body {
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.2fr 1.5fr 0.5fr;
    grid-template-rows: 0.15fr 0.5fr 0.5fr 0.5fr auto;
    gap: 5px;

    grid-template-areas: 
        '..... ..... ..... ..... .....'
        '. picture picture description .'
        '. picture picture description .'
        '. songs songs songs songs';
}

/* Album image */
.album-picture {
    grid-area: picture;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-picture img {
    width: 350px;
    max-width: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Album description */
.album-info {
    grid-area: description;
    text-align: center;
    align-content: center;
}
.album-songs {
    grid-area: songs; /* now it sits below album */
    display: flex;
    flex-direction: column;
    gap: 10px; /* space between songs */
}

.song {
    display: grid;
    grid-template-columns: 0.2fr 1fr; /* picture + description */
    gap: 10px;
    margin-top: 10px; /* vertical spacing between songs */
    align-items: center;
}

/* Song picture */
.song-picture {
    display: flex;
    justify-content: right;
    padding-right: 20px;
}

.song-picture img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* Song description */
.song-description {
    display: flex;
    align-items: center;
    margin-left: 35rem;
}

/* Title link only wraps text */
.song-description a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 10px;
    color: white;
}