*{
    box-sizing:border-box;
}

body{
    background-image: url(music-images/pink-paper-texture-background-design-vector\ \(1\).jpg);
}

.top{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
}

.title img{
    width:100%;
    height:auto;
    align-items:center;
    justify-content:center;
}

.container{
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-evenly;
    gap:50px;

    width:100%;
    max-width:800px;

    margin: 0 auto;
}

.row{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:50px;
}

.song{
    display:flex;
    width:250px;
    height:250px;
    cursor:pointer;
    transition:transform 0.2s ease, box-shadow 0.2s ease;
    margin:20px;
}

.song:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba (0,0,0,0.3);
}

.song img{
    object-fit:fill;
    width:300px;
    height:300px;
}