body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #292547;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
}
section {
  margin: 0 auto;
  padding: 50px;
}
header {
  padding: 150px;
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/john-williams1.jpeg);
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header h3 {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
}
header h1 {
  font-weight: 800;
  font-size: 128px;
  margin-bottom: 0px;
}
header h2 {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-top: 10px;
}
.learn-more-link {
  background-color: #fb5c8d;
  padding: 16px 32px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
}
.learn-more-link:hover {
  opacity: 0.8;
  cursor: pointer;
}
main h4 {
  color: #fb5c8d;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: inline-block;
  border-left: 3px solid #fb5c8d;
  padding-left: 10px;
}
main {
  background-color: #12101d;
}
.description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  color: #fff;
}
.description-header h4 {
  margin: 0;
}
.description-section img {
  max-width: 100%;
  height: auto;
  margin-top: 4px;
}
.movies-section,
.soundtracks-section {
  text-align: center;
}
.movies-section {
  background-color: #1e1b2c;
  padding: 30px;
}
.movies-section h3,
.soundtracks-section h3 {
  font-weight: 800;
  font-size: 48px;
  text-align: center;
  opacity: 0.7;
  color: #fff;
  margin: 0px auto 50px;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.movie-grid-element {
  background-color: #fff;
  border-radius: 10px;
  text-align: left;
}
.card-content {
  margin: 24px 24px;
}

.movie-grid-element h5 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}
.movie-grid-element p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0px;
}
.movie-grid-element h6 {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}
.movie-grid-element a {
  text-align: center;
  display: block;
}
.soundtracks-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  text-align: center;
}
footer {
  font-family: "Poppins", sans-serif;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/john-williams4.webp);
  color: #fff;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
footer h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}
footer p,
footer ul {
  font-weight: 400;
  font-size: 16px;
  opacity: 0.8;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
}

@media (max-width: 600px) {
  header {
    padding: 60px 20px;
  }

  header h1 {
    font-size: 56px;
  }

  header h2 {
    font-size: 24px;
    margin: 10px;
  }

  header h3 {
    font-size: 16px;
    letter-spacing: 3px;
  }

  section {
    padding: 30px 20px;
  }

  .description-header {
    text-align: center;
    margin-top: 20px;
  }

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

  .description-grid,
  .movies-grid,
  .soundtracks-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movies-section h3,
  .soundtracks-section h3 {
    font-size: 32px;
  }
}
