html {
    scroll-behavior: smooth;
}
body {
    background-color:#000;
    background: url('./imgs/f.jpg');
    background-repeat:no-repeat;
}

.btn {
    cursor: pointer;
    font-size: 25px;
    font-family: sans-serif;
    background-color: #000;
}

#listen {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index:100;
    background: rgba(0,0,0,0.9);
    pointer-events: none;
    opacity:1;
}
#listen.hidden {
    opacity:0;
    transition: opacity .3s ease-in-out;
}

#listen:hover {
    transition: background .3s ease-in-out;
    background: rgba(0,0,0, 0.9);
    background: linear-gradient(307deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 100%);
}

#listen #play{
    pointer-events: auto;
    cursor: pointer;
    font-size: 70px;
    font-family: sans-serif;
    background-color: #000;
    color: #fff;
    width: 200px;
    padding: 20px 30px;
    border-radius: 7px;
    text-align: center;
    margin: auto;
    transition: box-shadow .3s ease-in-out;
}

#listen #play:hover {
    box-shadow: 5px 5px 5px #000;
    transition: box-shadow .1s ease-in-out;
}

#art {
    position:absolute;
    display:block;
    width: 100vw;
    overflow: hidden;
    scroll-behavior: smooth;
    background-color: rgba(0, 0, 0, .9);
}

#art ul {
    scroll-behavior: smooth;
    overflow: scroll;
    width:auto;
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
}

#art ul li {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#art ul li img {
    width:100vw;
    height:100vh;
}

@media screen and (max-width: 900px) and (min-width: 30px) {
    #art ul li img {
        width:100vw;
        height:100vh;
        min-height:150px;
        max-height:50%;
    }
}

#scratch {
    width: 100vw;
    height: 100vh;
    position: fixed;
    opacity: .05;
    top: 0px;
    left: 0px;
    mix-blend-mode: hard-light;
    
}

#menu {
    position:absolute;
    bottom:50px;
    z-index:20;
    padding:40px;
    width:100vw;
}

#menu-title {
    font-size:80px;
    font-family: sans-serif;
    position:absolute;
    bottom:50px;
    z-index:20;
    padding:40px;
}
#menu-prev {
    border-radius: 50%;
    position:absolute;
    bottom:50px;
    z-index:20;
    padding:20px;
    left:20px;
    color:#fff;
}
#menu-next {
    border-radius: 50%;
    position:absolute;
    bottom:50px;
    z-index:20;
    padding:20px;
    right:100px;
    color:#fff;
}
#menu-prev.hidden, #menu-next.hidden {
    display:none;
}

#audio {
    position:fixed;
    display:block;
    z-index:5;
    width:100%;
    bottom:0px;
}

#audio audio {
    width:100vw;

}

audio::-webkit-media-controls-enclosure {
    border-radius: 0;
    background: none;
}
audio::-webkit-media-controls-panel{
    background-color: rgba(144, 180, 191,.1);
    background: none;
    }