*{
    font-family:'Montserrat';
}

body{
    margin:0px;
    padding:0px;
    overflow-x: hidden;
    display: flex;
    flex-direction: row;
    width:max-content;
    height:400vw;
}

header{
    position: fixed;
    width:100vw;
    display: flex;
    gap:20px;
    align-items: center;
    justify-content: center;
}

section{
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    width:100vw;
    height:100vh;
    position:fixed;
}

.emphasized-heading{
    font-family: 'Geostar';
    animation: letter-float 10s ease-in-out infinite forwards alternate;
}

@keyframes letter-float{
    from{
        letter-spacing:0px;
    }
    to{
        letter-spacing:10px;
    }
}

::-webkit-scrollbar{
    background-color: none;
}
::-webkit-scrollbar-thumb{
    border-radius: 20px;
    width:10px;
    background-color: black;
}
.song{
    width:300px;
    aspect-ratio: 1/1;
    background-color: white;
    border:solid black 4px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.song img{
    width:200px;
    aspect-ratio: 1/1;
    border-radius: 0.5rem;
}
