* {
    color: #eae6eb;
    font-family: "Roboto", "sans-serif";
    font-size: 24px;
}

dl {
    margin: 0;
}

body {
    background-color: #131f33;
}

.songs-container {
    display: flex;
    flex-direction: column;
    max-width: 90vw;
    margin: 0 auto;
}

.song-info {
    border: 2px solid #97c7f4;
    border-radius: 5px;
    background-color: #113a5a;
    display: flex;
    height: 35vh;
    padding: 24px;
    margin: 16px;
}

.song-info__song-art-and-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.song-info__art {
    flex-shrink: 0;
    margin-right: 24px;
    width: 35vh;
    height: 35vh;
    max-width: 35vh;
    max-height: 35vh;
}

.song-info__heading {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: right;
}

.song-info__song-details {
    list-style: none;
    text-align: right;
}

.song-info__term-label {
    font-size: 26px;
}

.song-info__title,
.song-info__artist,
.song-info__album {
    margin: 8px 0;
    text-align: right;
}

.song-requests {
    background-color: #eee
}