html {
    font-family: 'Roboto', serif;
    background-color: #1f1f1f;
    color: #e8e8e8;
    font-size: 14px;
}

body {
    width: 600px;
    margin: 20px auto;
}

.artist {
    color: #9e9e9e;
}

.artist-and-album {
    font-size: 22px;
}

.header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.albums-container {
    display: flex;
}

.album-card {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 8px;
    gap: 6px;
}

.album-card.active {
    background-color: #34517d;
}

.album-card img {
    border-radius: 8px;
}

.year {
    color: #9e9e9e;
}
