:root {
    --page-background: #bbd6a0;
    --content-background: #cffaa5;
    --header-background: #99d292;

    --nav-header-background: #bbd6a0;
    --nav-link-background: #cffaa5;
    --nav-highlight-link-background: #f0f0f0;

    --font-color: #000;
    --link-font-color: #053fa5;

    --song-lyric-font-color: #d73928;
    --song-instrumental-font-color: #3924cc;
}

body {
    margin: 0px;
    font-family: Verdana;
    font-size: 10pt;
    background-color: var(--page-background);
    color: #000;
}

input,
button,
textarea,
select {
    font-size: 13px;
    background: #d1c0a5;
    border: 1px solid #000;
    color: #000;
    font-weight: bold;
}

input:disabled,
button:disabled,
textarea:disabled,
select:disabled {
    background: #cacaca;
    color: #666;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

.form {
    width: 250px;
    float: right;
}

.result {
    width: 425px;
    padding: 5px;
    float: right;
    border: 1px solid #333;
}

.clear:after {
    clear: right;
    content: "";
    display: table;
}

h2 {
    width: 100%;
    text-align: center;
}

#container {
    min-width: 300px;
    background: var(--content-background);
    overflow: hidden;
}

#header {
    text-align: center;
    font-style: italic;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 28pt;
    background-color: var(--header-background);
}

#content {
    padding: 5px;
}
.container-flow-root {
    display: flow-root;
}

#footer {
    min-width: 300px;
    background: var(--content-background);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    text-align: center;
}

.center {
    text-align: center;
}

#mobile-menu-button {
    display: none;
    cursor: pointer;
    padding: 10px 12px;
    position: absolute;
    border-radius: 10px;
    background: var(--nav-link-background);
    border: 1px solid black;
    top: 14px;
    right: 15px;
}
#mobile-menu-button:hover {
    background: var(--nav-highlight-link-background);
}

#mobile-menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #000;
    border-radius: 2px;
}

#side-nav.mobile-open {
    display: block !important;
}

@media (max-width: 1000px) {
    #container {
        width: 100%;
    }
    #header {
        height: 50px;
        width: 100%;
        border-bottom: 1px solid black;
    }
    #header-desktop-text {
        display: none;
    }
    /* #header-mobile-text {} */
    #content {
        padding: 5px;
    }
    #footer {
        padding: 10px;
    }
    #mobile-menu-button {
        display: block;
    }

    li.header {
        border-top: none;
    }
    .side-navigation {
        display: none;
        background: var(--nav-link-background);
    }
    .side-navigation ul {
        margin: 0px;
        padding: 0px;
        display: block;
        padding-bottom: 3px;
        text-align: left;
    }
    .side-navigation ul li {
        background-color: var(--nav-link-background);
        border-bottom: 1px solid #000;
    }
    .side-navigation ul li.header {
        display: block;
        border-bottom: 1px solid black;
        background-color: var(--nav-header-background);
        font-size: 12pt;
        padding: 3px;
        padding-left: 12px;
        font-weight: bold;
    }
    .side-navigation ul li a {
        display: block;
        padding: 15px;
        font-size: 12pt;
        width: 100%;
    }
    .side-navigation ul li a:hover {
        background-color: var(--nav-highlight-link-background);
    }
}

@media (min-width: 1000px) {
    #container {
        width: 1000px;
        border-right: 1px solid black;
    }
    #header {
        height: 50px;
        border-bottom: 1px solid black;
        width: 1000px;
    }
    /* #header-desktop-text {} */
    #header-mobile-text {
        display: none;
    }
    #content {
        margin-left: 199px;
        padding: 5px;
        width: 789px;
        border-left: 1px solid black;
    }
    #footer {
        border-right: 1px solid black;
        padding: 10px;
        width: 980px;
    }
    .side-navigation {
        background: var(--nav-link-background);
        float: left;
        width: 200px;
    }
    .side-navigation ul {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
        display: block;
        text-align: left;
    }
    .side-navigation ul li {
        border-bottom: 1px solid black;
        background-color: var(--nav-link-background);
        display: block;
        clear: both;
        border-right: 1px solid black;
    }
    .side-navigation ul li.header {
        background-color: var(--nav-header-background);
        font-size: 11pt;
        padding: 3px;
        font-weight: bold;
    }
    .side-navigation ul li a {
        background-color: transparent;
        display: block;
        padding: 3px;
        padding-left: 10px;
    }
    .side-navigation ul li a:hover {
        display: block;
        background-color: var(--nav-highlight-link-background);
        padding: 3px;
        padding-left: 10px;
    }

    .side-navigation ul li:last-child {
        border-bottom: 0px;
    }
}

.notice {
    border: 2px solid black;
    padding: 5px;
    background-color: rgb(126, 5, 5);
    color: white;
    margin: 25px;
    font-size: 12pt;
    text-align: left;
}

.wallpaper {
    margin-top: 5px;
    max-width: 95%;
}

img.image-border {
    border: 4px inset #444;
    border-radius: 6px;
}

a:link,
a:visited,
a:hover,
a:active {
    font-family: Tahoma;
    font-size: 14px;
    text-decoration: none;
    color: var(--link-font-color);
}

a:hover {
    text-decoration: underline;
}

sub {
    user-select: none;
}

.category {
    font-size: 16px;
}

td.td {
    width: 50%;
}

.song_name_lyrics {
    color: var(--song-lyric-font-color) !important;
    font-size: 18px !important;
}

.song_name_instrumental {
    color: var(--song-instrumental-font-color) !important;
    font-size: 18px !important;
}

.song_info {
    text-align: left;
    padding-bottom: 2px;
}

.song_info span {
    font-size: 11px;
}

.song_audio {
    text-align: center;
    margin: 3px;
    clear: both;
}

.song_audio audio {
    margin: 2px;
    width: 290px;
}

.ww-player {
    width: 350px;
    display: grid;
    grid-template-columns: 20px 300px 20px;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    align-items: center;
    grid-template-areas:
        "title title title"
        "previous audio forwards";
}
.ww-player-title {
    grid-area: title;
    font-size: 16px;
    font-weight: bold;
}
.ww-player-previous {
    grid-area: previous;
}
.ww-player-forwards {
    grid-area: forwards;
}
.ww-player-previous a,
.ww-player-forwards a {
    font-size: 24px;
}
.ww-player-audio {
    grid-area: audio;
    text-align: center;
}
.ww-player-audio audio {
    width: 280px;
}

html.nedlaw {
    filter: invert(100%);
}

@keyframes floatHeart {
    0% {
        left: -30px;
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        left: 220px;
        transform: translateY(0);
    }
}
#valentines-heart {
    position: absolute;
    width: 24px;
    opacity: 0.7;
    left: -30px;
    top: 3px;
    animation: floatHeart 3s linear infinite;
}
.valentine-anim-container {
    position: absolute;
    width: 200px;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
