@font-face {
    font-family: Spectral;
    src:url("fonts/Spectral-SemiBold.ttf");
}

:root {
    --green: #026910;
    --pink: #830373;
    --dark_grey: #121212;
    --mid_grey: #222222;
    --bourdeaux: #33001a;
    --dark_blue: #202060;
    --middle_red: #880000;
    --light_red: #ff0000;
}

body {
    background: url("uploads/background.webp") no-repeat center center fixed;
    width: 100%;
    height: 50%;
    margin: 0 auto;
    background-size: cover;
    z-index: -1;
    font-family: Spectral;
}

#header {
    display: flex;
    list-style: none;
    position: fixed;
    background: rgba(7,7,7,0.7);
    margin: 0;
    padding: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

#header li {
    display: inline-flex;
    padding: 15px 35px 15px 35px;
    color: var(--green);
    text-align: center;
    margin: 0;
}

#shimmer-header {
    background: transparent;
    border-bottom: 1px solid;
    box-shadow: 0 0 20px var(--green);
    min-width: 20px;
    min-height: 10px;
}

#header a li:hover {
    background-color: var(--green);
    color: var(--dark_grey);
}

#footer {
    list-style: none;
    position: relative;
    display: -webkit-box;
    -webkit-box-align:center;
    -webkit-box-pack:center;
    background: transparent;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    background: rgba(7,7,7,0.7);
    margin-top: 4em;
    text-align: center;
    z-index: 10;
}

#footer li {
    display: inline-flex;
    padding: 15px 35px 15px 35px;
    color: var(--green);
    text-align: center;
    margin: 0;
}

#footer a li {
    color: var(--green);
}


p, span {
    color: #f2f2f2;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
}

li {
    color: #f2f2f2;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    list-style: none;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:visited {
    color: var(--green);
}

a:hover {
    text-shadow: 0 0 2px #014904;
}

b {
    color: white;
}

#footer a li:hover {
    background-color: var(--green);
    color: var(--dark_grey);
}

#arrow {
    border: solid var(--green);
    border-image-source: url("uploads/text-background.jpg");
    border-image-slice: 160;
    border-image-width: 0 70px 70px 0;
    /*border-width: 0 70px 70px 0;*/
    padding: 70px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    bottom: 100px;
}

.album-cover {
    max-width: 100%;
}

#album-grid-container {
    display: grid;
    grid-template-areas:
        "left right"
        "left right";
    grid-template-columns: repeat(2, 1fr);
}

#track-list {
    display: inline-flex;
    margin-top: 1em;
}

.album-link {
    margin-top: 1em;
    font-size: 1.5em;
}

.album-link:hover {
    text-shadow: 0 0 3px var(--green);
    color: var(--green);
}

.player-icons {
    height: 100%;
    position: relative;
    width: 100%;
}

.album-box {
    margin: 25px 10px 25px 10px;
    border: 1px solid var(--bourdeaux);
    box-shadow: 0 5px 5px var(--bourdeaux);
    overflow: auto;
    background: var(--dark_grey);
}

.content {
    position: relative;
    max-width: 1250px;
    background-color: var(--dark_grey);
    margin-left: auto;
    margin-right: auto;
    margin-top: 100vh;
}

#main-container {
    border: 2px solid var(--bourdeaux);
    border-radius: 5px;
    box-shadow: 0 0 50px var(--bourdeaux);
    background-color: var(--mid_grey);
    overflow: auto;
    padding-left: 20px;
    padding-right: 20px;
}

#main-head {

}

#cover-track_view {
    width: 40%;
    height: 100%;
    margin-left: 2em;
    margin-bottom: 2em;
    margin-right: 2em;
}

.track {
    text-align: left;
    margin: auto;
}

.audio {
    display: inline-flex;
    justify-content: space-between;
    background: black;
    border-radius: 2px;
    box-shadow: 0 0 2px var(--bourdeaux);
    width: 655px;
    height: 60px;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

.playButton {
    height: 60px;
    width: 70px;
    margin: 0;
    border: 2px solid var(--bourdeaux);
    box-shadow: 0 0 5px var(--bourdeaux);
    background-image: url("uploads/button-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--green);
    font-family: inherit;
    font-size: 25px;
    cursor: pointer;
}

.playButton:hover {
    height: 60px;
    width: 70px;
    margin: 0;
    border: 2px solid var(--bourdeaux);
    box-shadow: 0 0 5px var(--bourdeaux);
    background: url("uploads/button-background.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.stopButton {
    height: 60px;
    width: 70px;
    margin: 0;
    border: 2px solid var(--bourdeaux);
    box-shadow: 0 0 5px var(--bourdeaux);
    background-image: url("uploads/button-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--green);
    font-family: inherit;
    font-size: 25px;
    cursor: pointer;
}

.stopButton:hover {
    height: 60px;
    width: 70px;
    margin: 0;
    border: 2px solid var(--bourdeaux);
    box-shadow: 0 0 5px var(--bourdeaux);
    background: url("uploads/button-background.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.volumeButton {
    height: 60px;
    width: 70px;
    margin: 0;
    border: 2px solid var(--bourdeaux);
    box-shadow: 0 0 5px var(--bourdeaux);
    background-image: url("uploads/button-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--green);
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
}

.volumeSlider {
    position: absolute;
    display: none;
    width: 655px;
    background: transparent;
    height: 60px;
    margin-top: 0;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: opacity .2s;
    z-index: 30;
    animation: fadein 0.5s;
}

.barEmpty {
    position: absolute;
    height: 10px;
    margin-top: 25px;
    width: 655px;
    background: linear-gradient(90deg, var(--dark_blue), var(--bourdeaux));
    opacity: 0.7;
    cursor: pointer;
}

.barFull {
    position: absolute;
    height: 10px;
    margin-top: 25px;
    background: url("uploads/text-background.jpg");
    box-shadow: 0 0 20px var(--green);
    cursor: pointer;
    z-index: 10;
    width: 655px;
}

.volumeSlider:hover {
    display: inline-block;
}

.volumeButton:hover + .volumeSlider {
    display: inline-block;
}

.playTime {
    padding: 20px;
    align-items: flex-start;
}

.duration {
    padding: 20px;
}

.playTimeBar {
    width: 0;
    background: url("uploads/button-background.png") no-repeat;
    background-size: 300px;
    background-position-y: 50%;
    height: 40px;
    position: absolute;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: opacity .2s;
    border-right: 1px solid var(--bourdeaux);
    box-shadow: 0 0 10px var(--bourdeaux);

}

.durationBar {
    width: 300px;
    background: url("uploads/playtimebar-background.png") no-repeat;
    background-size: cover;
    background-position-y: 50%;
    height: 40px;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: opacity .2s;
}

.changePlayTimeBar {
    width: 300px;
    background: transparent;
    height: 40px;
    position: absolute;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: opacity .2s;
    z-index: 10;
}

.audioBar {
    display: inline-flex;
}

#album_length-seperator {
    width: 220px;
    color: var(--green);
    margin-left: 0;
    margin-top: 1em;
}

.text-imaged {
    background-image: url("uploads/text-background.jpg");
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

h1 {
    text-align: center;
    font-size: 10em;
    margin-top: 0;
    margin-bottom: 0;
    background-image: url("uploads/text-background.jpg");
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

h3 {
    text-align: center;
    font-size: 2em;
    background-image: url("uploads/text-background.jpg");
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

h4 {
    text-align: center;
    font-size: 4em;
    background-image: url("uploads/text-background.jpg");
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-top: -0.5em;
    margin-bottom: 0;
}

h5 {
    text-align: center;
    font-size: 2em;
    background-image: url("uploads/text-background.jpg");
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 0;
    margin-top: 1em;
}

.nonestyle-link:hover {
    text-shadow: none;
    display: block;
}

.main-underline {
    height: 2px;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -0.5em;
    background-image: url("uploads/text-background.jpg");
    background-clip: inherit;
    -webkit-text-fill-color: transparent;
}

.icon-small {
    height: 1.5em;
    margin: 0 1em -0.4em 2em;
}

.icon-footer {
    /*height: 40px;*/
    height: 1.5em;
    margin: 0 1em -0.4em 2em;
    /*margin-bottom:-1em;*/
}

.home-embeds-grid {
    margin-bottom: 1em;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.home-embeds-grid-item {
    flex-shrink: 0;
	
}
.spotify-icon {
    width: 1.5em;
    height: 1.5em;
    margin: 0 1em -0.4em 2em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

#footer > a {
    margin: 0 1em;
}

@media only screen and (max-device-width: 800px) {
    .album-box {
        margin-top: 25px;
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid var(--bourdeaux);
        box-shadow: 0 5px 5px var(--bourdeaux);
        overflow: auto;
        width: 100%;
    }

    #album-grid-container {
        display: grid;
        grid-template-areas:
            "left"
            "left";
        grid-template-columns: 1fr;
    }

    .album-cover {
        max-width: 100%;
    }

    .playTimeBar {
        width: 0;
        background: url("uploads/button-background.png") no-repeat;
        background-size: 100px;
        background-position-y: 50%;
        height: 40px;
        position: absolute;
        margin-top: 10px;
        cursor: pointer;
        -webkit-transition: 0.2s;
        transition: opacity .2s;
        border-right: 1px solid var(--bourdeaux);
        box-shadow: 0 0 10px var(--bourdeaux);
    }

    .durationBar {
        width: 100px;
        background: url("uploads/playtimebar-background.png") no-repeat;
        background-size: cover;
        background-position-y: 50%;
        height: 40px;
        margin-top: 10px;
        cursor: pointer;
        -webkit-transition: 0.2s;
        transition: opacity .2s;
    }

    .changePlayTimeBar {
        width: 100px;
        background: transparent;
        height: 40px;
        position: absolute;
        margin-top: 10px;
        cursor: pointer;
        -webkit-transition: 0.2s;
        transition: opacity .2s;
        z-index: 10;
    }

    .audio {
        width: 455px;
    }

    .volumeSlider {
        position: absolute;
        display: none;
        width: 455px;
        background: transparent;
        height: 60px;
        margin-top: 0;
        cursor: pointer;
        -webkit-transition: 0.2s;
        transition: opacity .2s;
        z-index: 30;
        animation: fadein 0.5s;
    }

    .barEmpty {
        position: absolute;
        height: 10px;
        margin-top: 25px;
        width: 455px;
        background: linear-gradient(90deg, var(--dark_blue), var(--bourdeaux));
        opacity: 0.7;
        cursor: pointer;
    }

    .barFull {
        position: absolute;
        height: 10px;
        margin-top: 25px;
        background: url("uploads/text-background.jpg");
        width: 455px;
        box-shadow: 0 0 20px var(--green);
        z-index: 10;
        cursor: pointer;
    }

    #header {
        display: flex;
        list-style: none;
        position: relative;
        background: rgba(7,7,7,0.7);
        margin: 0;
        padding: 0;
        top: 0;
        text-align: center;
        z-index: 10;
        overflow-y: hidden;
        transform: none;
        left: 0;
        overflow-x: visible;
        max-height: 150px;
        max-width: 300%;
        min-width: 150%;
        flex-wrap: nowrap;
        font-size: 70px;
        justify-content: center;
     }
     
    #header-wrapper {
        display: block;
        width: 100vw;
        top: 0;
        position: fixed;
        overflow: auto;
        border-bottom: 1px solid;
        box-shadow: 0 0 20px var(--green);
        z-index: 20;
    }

    #header li {
        display: inline-flex;
        padding: 15px 35px 15px 35px;
        color: var(--green);
        text-align: center;
        margin: 0;
    }
   
    #shimmer-header {
        background: transparent;
        border-bottom: none;
        box-shadow: none;
        min-width: 20px;
        min-height: 10px;
    }
   
    #header a li:hover {
        background-color: var(--green);
        color: var(--dark_grey);
    }

    #footer {
        display: flex;
        list-style: none;
        position: relative;
        background: rgba(7,7,7,0.7);
        margin: 0;
        margin-top: 4em;
        padding: 0;
        bottom: 0;
        text-align: center;
        z-index: 10;
        overflow-y: hidden;
        transform: none;
        left: 0;
        overflow-x: visible;
        max-height: 150px;
        max-width: 300%;
        min-width: 150%;
        flex-wrap: nowrap;
        font-size: 70px;
        justify-content: center;
     }
     
    #footer-wrapper {
        display: block;
        width: 100vw;
        bottom: 0;
        position: relative;
        overflow: auto;
        z-index: 20;
    }

    #footer li {
        display: inline-flex;
        padding: 15px 35px 15px 35px;
        color: var(--green);
        text-align: center;
        margin: 0;
    }
   
    #footer a li:hover {
        background-color: var(--green);
        color: var(--dark_grey);
     }
}
