* {
    box-sizing: border-box;
    /* display: flex; */
}
html, body {
    display: flex;
    height: 100vh;
    width: 100%;
    font-family: monospace;
    /* -webkit-transform:scale(1.5); Safari and Chrome */
    /* background-image: url("https://images.unsplash.com/photo-1597388708659-93999d38d96a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1395&q=80") */
}

body {
    background-image: url("https://images.unsplash.com/photo-1534737480428-0be77c7851bf?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    padding-top: 2%;
}

.audioPlayer {
    box-shadow: 0 0 32px 4px rgba(0,0,0,0.2);
    width: 600px;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
}

canvas {
    flex: 2;
    height: 250px;
    width: 100%;
    /* width: 150%; */
    background-color: black;
} 

.playlist {
    display: flex;
    flex-direction: column;
    background-color: lightgray;
    height: 315px;
    overflow-y: auto;
    /* width: 150%; */
    /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(12,115,40,1) 99%, rgba(0,212,255,1) 99%); */
}

a {
    padding: .75rem 2.5rem;
    display: flex;
    align-items: center; 
    width: 100%;
    color: black;
    text-decoration: none; 
}

.track-information {
    display: flex;
}

.track-information:hover {
    background-color: white; 
    color: black;
}

i {
    font-size: .75rem;
    margin-right: .5rem;
}

.now-playin {
    background-color: white;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
}


.picker {
    /* display: flex;
    justify-content: center;
    align-items: flex-end;
    top: 0;
    right: 0; */
    /* position: absolute; */
    /* top: 0; */
    width: 75%;
    display: flex;
    flex-direction: column;
}

#display {
    width: 600px;
    height: 15px;
    transition: backgroiund 100ms;
    background: #427251;
    border: 1px solid black;
}

.input-contain {
    display: flex;
    flex-direction: column;
    width: 33%;
    color: white;
}

.test {
    display: flex;
    flex-direction: row;
    margin: 0% 0 2% 0;
    width: 600px;
}

input[type=range] {
    margin: 5% 0 1% 0;
    background: red;
    height: 5px;
    /* box-shadow: 1px 1px 2px #A6A6A6; */

}
input[type="range"] {
    margin: 5% 0 1% 0;
    background: linear-gradient(to right, #82CFD0 0%, #82CFD0 50%, #fff 50%, #fff 100%);
    height: 2px;
    /* box-shadow: 1px 1px 2px #A6A6A6; */

} 

.button-container {
    display: flex;
    justify-content: space-between;
}

.playback-buttons {
    width: 15%;
}

.progressBar {
    height: 3rem;    
    background-color: white;
    width: 100%;
    padding: .5rem;
}

.progress-bar-canvas {
    width: 100%;
    height: 8px;
    background-color: black;
    margin-bottom: 5%;
}

.timer {
    color: black;
}


#links {
    color: rgb(48, 196, 188);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

footer {
    font-size: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    /* background-color: white; */
}

#links:hover {
    color: white;
    transform: scale(1.6);
}

.fab {
    font-size: 35px;
    background: black;
    border-radius: 15px;
}

.uploadbutton {
    background-color: white;
}

.fa-question-circle {
    /* color: white; */
    font-weight: 900;
    border-radius: 15px;
    width: 100%;
    font-size: 30px;
}

.fa-question-circle:hover {
    cursor: help;
}

/* .fa-uload {
    display: flex;
    justify-content: center;
} */

#ub1 {
    display: flex;
    justify-content: center;
    
    font-size: 30px;
    position: relative;
}

.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background-color: rgba(255,255,255, .6);
}

.window {
    border: 3px solid black;
    width: 30%;
    margin: 50px auto;
    background-color: white;
    color: black;
    position: relative;
    display: flex;
    text-align: center;
    height: 70%;
    margin-top: 5%;
    flex-direction: column;
}  

.closed {
    display: none;
}

.close-button {
    margin: auto;
    font-weight: 900;
    width: 50%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    letter-spacing: 3px;
}

.close-button:hover {
    color: white;
    background-color: black;
}


.header {
    font-size: 25px;
    padding-bottom: 10px;
    border-bottom: 1px dotted black;
}

.app-deets {
    padding: 0 7% 0 7%;
    text-align: left;
}

.app-deets:hover {
    transform: scale(1.1)
}
