.text-center {
    text-align: center;
}

.fav-songs h1 {
    text-align: center;
}

.song-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
}

.each-song {
    flex: 1 1 300px;
    max-width: 300px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.each-song p {
    margin-bottom: 10px; /* spacing between text and video */
}

/* to set size of embedded youtube videos */
.youtube-player{
    aspect-ratio: 16/9;
    width: 100%;
}
