@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }

    .navbar {
        text-align: center;
        border-bottom: 1px solid white;
    }

    #header {
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid white;
    }

    .navbar a {
        background-color: transparent;
        transition: all 0.25s ease;
        padding: 5px;
        margin: 5px;
        cursor: pointer;
        color: white;
        text-decoration: none;
    }

    img[src="https://account.brylebaligad.com/bass"] {
        filter: drop-shadow(0px 0px 5px white)
    }

    .navbar a:hover {
        color: black;
        background-color: white;
    }

    #footer {
        border-top: 1px solid white;
        background: black;
        text-align: center;
        font-size: x-small;
        position: fixed;
        width: 100%;
        margin-left: -8px;
        bottom: 0;
    }
}