* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair", serif;
}
body {
  background: #030504;
  color: #fff;
}

html {
  font-size: 16px;
}
.container {
  margin: 0 auto;
  max-width: 1400px;
}

section {
  margin: 0 auto;
  max-width: 100%;
  padding: 3rem;
}

header {
  background: linear-gradient(
      rgba(3, 5, 4, 0.6),
      rgba(2, 4, 3, 0.6),
      rgba(11, 6, 32, 0.6)
    ),
    url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/174/974/original/adele-1.jpg?1760790957");
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  padding: 10rem 0;
}

h1 {
  font-weight: 900;
  font-size: 10rem;
  line-height: 1.5;
  margin: 30px 0;
}

header p {
  line-height: 1.5;
  font-size: 1.5rem;
}

header a,
main a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  background-color: #885df1;
  text-align: center;
  margin-top: 1.5rem;
  display: inline-block;
  text-transform: uppercase;
}

.grid {
  display: grid;
}

.main-h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(91, 213, 227, 1);
  background-color: rgb(87, 98, 99);
  display: inline;
  padding: 5px;
}

main h3,
.secondry-h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0%;
}

main p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0px;
  line-height: 1.5;
}

.image-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.image-background {
  background-color: rgb(18, 16, 29);
  padding: 3rem;
}

.img-class {
  max-width: 100%;
  opacity: 1;
  object-fit: cover;
}

.secondry {
  background: linear-gradient(rgba(3, 5, 4, 0.9), rgba(2, 4, 3, 0.7)),
    url(https://s3.amazonaws.com/shecodesio-production/uploads/files/000/175/038/original/Adele5.jpg?1760891366);
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-grid {
  text-align: center;
  list-style: 1.5;
}
.secondry-h2 {
  color: rgba(91, 213, 227, 1);
  display: inline-block;
  margin: 0 auto;
  border-radius: 2px;
  padding: 5px;
  background-color: rgb(87, 98, 99);
}

.secondry .grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.card {
  border: 1px solid rgba(238, 235, 248, 1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-contents {
  background-color: rgba(238, 235, 248, 1);
  color: rgba(39, 32, 68, 1);
  padding: 24px 32px;
}
hr {
  margin: 1rem 0;
}

.card-contents h4,
.card-contents h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0%;
}

.card p {
  font-size: 0.9rem;
}

.card-h5 {
  margin: 1rem 0;
  line-height: 1.5;
}

.card-lyrics {
  margin-bottom: 20px;
}

main .card-contents a {
  width: 100%;
}

.more-song-grid {
  margin-top: 2rem;
}
.grid-3 iframe {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.grid-3 iframe {
  width: 400px;
  height: 400px;
  aspect-ratio: 16/9;
}

footer {
  background: linear-gradient(rgba(2, 4, 3, 0.9), rgba(2, 4, 3, 0.9)),
    url(https://s3.amazonaws.com/shecodesio-production/uploads/files/000/174/977/original/Adele2.jpg?1760802414);
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-container {
  grid-template-columns: 1fr 2fr 2fr;
  gap: 2rem;
  padding: 2rem 1rem;
}

footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: Bold;
  line-height: 1.5;
  letter-spacing: 0%;
}

footer li {
  list-style: none;
}

footer a {
  text-decoration: none;
  color: #fff;
  text-decoration: underline;
}

.footer-contents {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0px;
}

@media (max-width: 900px) {
  header {
    padding: 5rem 0;
  }
  h1 {
    font-weight: 900;
    font-size: 5rem;
    line-height: 1.5;
  }
  header p {
    line-height: 1.2;
    font-size: 1rem;
  }
  .image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .image-background {
    padding: 1rem;
  }
  section {
    padding: 2rem 1rem;
  }

  main h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .secondry .grid-3 iframe {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .secondry-h2,
  .secondry-h3 {
    font-size: 2rem;
  }
  .grid-3 iframe {
    aspect-ratio: 1/1;
  }
}

@media (max-width: 900px) {
  footer h3 {
    line-height: 1.2;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0.6rem;
  }
}
