/* Top 10 Songs */

.music {
  position: relative;
  margin: 3rem 0 0;
  padding: 0 3rem;
}

.songs-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: lighter;
  text-transform: uppercase;
  color: white;
  margin-bottom: 3rem;
}

.songs {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 12.5rem;
}

.songs-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.songs-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.songs-left,
.songs-right {
  flex-grow: 4;
}

.songs-img {
  display: flex;
  justify-content: flex-end;
}

.songs-img img {
  height: 592px;
}

iframe {
  background: #1f1f1f;
}

/* Albums */

h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: lighter;
  color: var(--color-blue);
}

p {
  color: white;
  font-family: var(--font-title);
  font-size: 32px;
  text-align: center;
  margin-top: 1rem;
}

.albums {
  position: relative;
  margin-bottom: 8rem;
  padding: 9rem 3rem 0 3rem;
}

.albums-title {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}

.albums-container img {
  height: auto;
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid white;
}

.albums-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12rem;
}