@import url('https://fonts.googleapis.com/css2?family=Noto+Emoji&display=swap');

@font-face {
    font-family: 'Circular';
    src: url('Circular.woff2') format('woff2');
}

@font-face {
    font-family: 'Circular Title';
    src: url('CircularTitle.woff2') format('woff2');
}

body {
    font-family: 'Circular', sans-serif;
    color: white;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h2 {
    font-family: 'Circular Title', sans-serif;
    font-size: 5em;
    margin: 0.8em 0 0.5em;
}

ol {
    margin-bottom: 1.5em;
}

li {
    padding: 1.5em 15vw;
}

li p {
    font-size: 2.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
}

li span {
    font-size: 0.8em;
    margin-left: auto;
    color: #919191;
}

.bold {
    background-color: rgba(255, 255, 255, 0.1);
}

#frame {
    position: fixed;
    width: 100vh;
    height: 100vh;
    background-repeat: no-repeat;
    z-index: -100;
}

#container {
    padding: 5vh 0 15vh 0;
    background: transparent;
}

#albums {
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin: 0 auto;
    gap: 5em;
}

.album-data {
    padding: 0 15vw;
}

img {
    object-fit: cover;
    width: 100%;
}

#footer {
    margin-top: 3em;
    text-align: center;
    font-size: 4em;
}

#player {
    position: fixed;
    width: 100%;
    font-size: 6em;
    display: flex;
    bottom: 5vh;
    font-family: 'Noto Emoji';
}

#player-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    padding: 0.5em;
    margin: 0 auto;
    box-shadow: 0px 10px 20px 0 black;
}