@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";
}

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}
    
    
}

img{
    transition: 0.2s;
    border-radius: 5px;
}
audio{
    display:block;

}

#control{
    justify-items: center;
}
