@import url('https://fonts.googleapis.com/css?family=Khand');
body{
    font-family: 'Khand', sans-serif;
}
main{
    max-width: 600px;
    min-height: 100vh;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
}
.content{
/*     background: yellow; */
    background: url('../Album-Cover3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-width: 95vw;
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
    font-size: 24px;
    color: white;
}
.content h1{
    text-transform: uppercase;
    width: 80%;
    font-size: 40px;
    text-align: center;
    background-color: rgba(10, 10, 10, 0.5);
}
.currently-playing{
    margin: 0px 0px 30px;
}
.currently-playing p{
    text-align: center;
    margin: 10px 0px;
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
}
.audio-tracks-container{
    display: flex;
    justify-content: center;
}
.audio-tracks{
    width: 90%;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    background-color: rgba(10, 10, 10, 0.5);
}
.audio-tracks p{
        margin: 10px 10px 0px;
}
.track.active{
    border-bottom:1px solid rgba(0, 31, 92, 0.4);
}