:root{
    --shadow-color: 40deg 20% 20%;
    --accent: #ff5185;
}

body{
    background-blend-mode: overlay;
    background-color: #101320;
}
body::before{
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(0deg, rgba(0,0,0,0) 77%, rgb(56, 10, 89) 78%, rgb(15, 103, 128) 79%, rgb(78, 155, 18) 80%, rgb(171, 126, 20) 81%, rgb(238, 48, 28) 82%, rgba(0,0,0,0) 83%);
    opacity: 0.5;
}
a, em {color: var(--accent);}

.title{
    font-family: "LedLight";
    color: whitesmoke;
}
.mainContainer{
    background-color: #00000074;
}
.fadeBox::before{
    z-index: -1;
    content: "";
    width: 100%;
    height: calc(var(--height) + 50px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.741) 80%, transparent 98%);
    position: absolute;
}

#musicNav{
    position: relative;
    margin: 0;
    margin-top: 10px;
    padding: 0;
}
#musicNav li{
    background-image: linear-gradient(90deg, #6ec5ff1b, #00000074 70%);
    border: 1px solid rgba(255, 255, 255, 0.394);
    border-radius: 20px 0 0 20px;
    width: 100%;
    padding: 0.2em 0.4em;
    margin-bottom: 0.5em;
    list-style: none;
    text-align: right;
    font-family: "PlanetE";
}
li a{
    color: rgba(255, 255, 255, 0.655);
    display: block;
    width: 100%;
}
.activePage{color: whitesmoke;}

#contentWrapper{
    overflow: hidden;    
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 450px) {
    #musicNav li a{
        font-size: 0.7em;
    }
}
@media only screen and (max-width:600px) {
    #musicNav{
        z-index: 10;
        display: flex;
        gap: 1em;
        justify-content: center;
    }
    #musicNav li{
        width: max-content;
        padding: 0.2em 0.8em;
        border-radius: 20px;
    }
    #musicNav li:hover{
    cursor: pointer;
    transform: translateY(1px);
    }
    #musicNav li:active{transform: translateY(2px);}
}
@media only screen and (min-width:600px) {
    #musicNav li{
        border-right: none;
    }
    #musicNav li:hover{
    cursor: pointer;
    transform: translateX(1px);
    }
    #musicNav li:active{transform: translateX(2px);}
}


