body {
    background: url("../jpg/background.jpg") center/cover;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;

    color: white;
    font-family: 'Courier New', Courier, monospace;
    visibility: hidden;

    text-align: center;
    -ms-overflow-style: none;
    scrollbar-width: none;

    text-shadow: 0px 0px 6px black;
}

ul {
    display: inline-block;
    text-align: left;
    list-style-type: none;
}

li {
    margin: 6px;
    font-size: 24px;
    font-weight: lighter;
    text-shadow:
        0.5px 0.5px rgba(255, 255, 255, 0.5),
        -0.5px -0.5px rgba(255, 255, 255, 0.5),
        0.5px -0.5px rgba(255, 255, 255, 0.5),
        -0.5px 0.5px rgba(255, 255, 255, 0.5);
}

a {
    text-decoration: none;
    color: blueviolet;
}

a:hover {
    color: crimson;
}

a:active {
    color: goldenrod;
}

button:hover,
input:hover {
    cursor: pointer;
}

#wordmark {
    font-family: Georgia, 'Times New Roman', Times, serif;
    position: fixed;
    bottom: -32px;
    font-size: 32px;

    background: linear-gradient(to right, blueviolet, crimson, goldenrod);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.60);
}

#skull {
    font-size: 46px;
}

.cover,
.track_art {
    width: 75px;
    margin-bottom: 12px;
    vertical-align: middle;
    border-radius: 1px;
    outline: 3px ridge rgb(175, 175, 175);
    box-shadow:
        2px 2px 6px rgb(0, 0, 0, 0.5),
        -2px -2px 6px rgb(0, 0, 0, 0.5),
        2px -2px 6px rgb(0, 0, 0, 0.5),
        -2px 2px 6px rgb(0, 0, 0, 0.5);
}

.brand {
    height: 50px;
    margin: 6px;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.5));
}

#external {
    position: fixed;
    bottom: 3px;
    right: 0px;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}

#logo {
    width: 75px;
}

#artwork {
    filter: drop-shadow(0px 0px 3px rgb(255, 255, 255));    
    border: 20px solid transparent;
    border-image-source: url("../png/stars.png");
    border-image-slice: 45;
    border-image-repeat: round;
    width: 200px;
}


.secret_button {
    width: 25px;
    height: 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-radius: 100px;
}

.secret_button:hover {
    cursor: pointer;
}

#add_secret_button {
    background-color: black;
    color: white;
    border: 2px solid white;
    box-shadow:
        0px 0px 6px rgb(255, 255, 255);
}

#remove_secret_button {
    background-color: white;
    color: black;
    border: 2px solid black;
    box-shadow:
        0px 0px 6px rgb(0, 0, 0);
}

#email_mailto {
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: lighter;
    text-shadow:
        0.5px 0.5px rgba(255, 255, 255, 0.5),
        -0.5px -0.5px rgba(255, 255, 255, 0.5),
        0.5px -0.5px rgba(255, 255, 255, 0.5),
        -0.5px 0.5px rgba(255, 255, 255, 0.5);
}

.download_button {
    border: 3px ridge rgb(175, 175, 175);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 75px;
    height: 24px;
    box-shadow:
        0px 0px 6px rgb(0, 0, 0, 0.5);
}

.download_text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    letter-spacing: 3px;
    text-shadow:
        0.5px 0.5px rgba(255, 255, 255, 0.5),
        -0.5px -0.5px rgba(255, 255, 255, 0.5),
        0.5px -0.5px rgba(255, 255, 255, 0.5),
        -0.5px 0.5px rgba(255, 255, 255, 0.5);
}

.select_indicator {
    visibility: hidden;

    position: absolute;
    text-shadow: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0px 0px 6px black;
}

.track_link:hover .select_indicator {
    visibility: visible;
}
