#grid {
    display: none;
}

.song-block {
    width: 600px;
    height: 300px;
}

#song-block-1 {
    grid-column: 2;
}

#song-block-2 {
    grid-column: 3;
}

.song {
    height: 80%;
    width: 100%;
    border: 0px;
    border-radius: 12px;
}

.choose {
    height: 20%;
    width: 100%;
    background-color: #f1f1f1;
}

.clickable {
    cursor: pointer;
}

.clickable:active {
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
