@font-face {
    font-family: "SCE-PS3";
    
    src: url("../resources/SCE-PS3-RD-R-LATIN.TTF");
}

body{
    padding: 0;
    margin: 30px;
    justify-content: center;
    display: grid;
    background-color: rgb(31, 26, 29);
    color: white;
    font-family: "SCE-PS3";
}

ul{
    list-style: none;
}

#tracklistDiv{
    position: fixed;
}

a{
    font-family: monospace;
}
footer{
    font-family: monospace;
}

#player{
    background-color: rgb(19, 19, 19);
    border: 2px solid rgb(19, 19, 19);
    border-radius: 3px;

    animation-name: fade;
    animation-duration: 0.5s;
}

@keyframes fade{
    0%{opacity:1}
    40%{opacity:.6}
    100%{opacity:1}
    
    
}

#art{
    display:flex;
    justify-content: center;
    align-items: center;
}

img{
    border-radius: 25px;
    margin: 10px;
    transition: 0.2s;
    border-radius: 5px;
    object-fit: contain;
    width:500px;
    height: 500px;
}
audio{
    display:block;

}

#control{
    justify-items: center;
    justify-content: center;
}




.controlBtn svg{
    width: 20px;
    height:20px
}


.controlBtn {

    border-radius: 60px;
    background: #757474;
    /*padding: 10px 20px 10px 20px;*/
    max-width: 70px;
    max-height: 70px;

    justify-content: center;
}
  
.controlBtn:hover {
  background: #666363;
  text-decoration: none;
}


#albumSelect li{
    transition:0.2s;
}
#albumSelect li:hover{
    background-color: rgb(50, 46, 49);
}