img {
    block-size: auto;
}

body {
    background-color: white;
}

.light_theme {
    display: inline-block;
}

.dark_theme {
    display: none;
}

p {
    text-indent: 40px;
}

@media (max-width: 992px) {
    p {
        text-indent: 0;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        color: #dee2e6;
        background-color: #00005e;
    }

    a {
        color: #6ea8fe;
    }

    a:hover {
        color: rgba(139, 185, 254, 1);
    }

    .light_theme {
        display: none;
    }

    .dark_theme {
        display: inline-block;
    }
}