html {
    background-color: rgb(55, 55, 55);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgb(185, 185, 185)
}

section {
    max-width: 700px;
    margin: 60px auto; 
    padding: 0 20px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.song-info {
    text-align: left;
  }
  
h1 {
    font-size: 44px;
}

h2 {
    font-size: 24px;
    font-weight: 300;
}

header a {
    display: inline-block;
  }
  
header img {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

header img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

p {
    font-size: 24px;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}

p:hover {
    color: #ffffff;
    transform: translateX(4px);
  }
