.container {
  max-width: 1400px;
  margin: 0 auto;
}

.grid {
  display: grid;

  grid-gap: 64px;
}

.grid-2-columns {
  grid-template-columns: 1fr 1fr;
}

.grid-3-columns-with-first-narrow {
  grid-template-columns: 1fr 2fr 2fr;
}

.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 30px;
}

.card {
  background: white;
  color: #272044;
  margin: 30px 0;
  border-radius: 30px;
}

.card-body {
  padding: 30px;
}

.btn {
  display: block;
  color: white;
  background: #885df1;
  padding: 16px 8px;
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
  margin: 20px;
  font-family: "Roboto", serif;
}

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

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/michael-jackson.jpeg);
  background-repeat: no repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 260px 0;
}

header h1 {
  font-family: "Playfair Display", serif;
  font-size: 128px;
  font-weight: 700;
  margin: 0;
}

header h2 {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-size: 40px;
  margin: 0;
}

header h3 {
  font-size: 24px;
  font-family: "Roboto", serif;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
}

header a {
  font-size: 16px;
  background-color: #885df1;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 32px;
  display: inline-block;
}

main {
  background: white;
}

main h2 {
  font-family: "Poppins";
  letter-spacing: 5px;
  font-size: 13px;
  color: #885df1;
  margin: 0;
}

main h3 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 0;
}

main h4 {
  font-family: "Roboto", serif;
  font-size: 24px;
  margin: 0;
}

main h5 {
  font-family: "Roboto", serif;
  font-size: 16px;
  margin: 0;
}

main p {
  font-family: "Roboto", serif;
  font-size: 16px;
  opacity: 0.8;
}

.img-responsive {
  width: 100%;
  display: block;
}

section.secondary {
  background-image: linear-gradient(rgba(2, 4, 3, 0.8), rgba(2, 4, 3, 0.8)),
    url("../images/main-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.secondary h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-align: center;
}

.secondary h3 {
  font-family: "Poppins";
  font-size: 13px;
  letter-spacing: 5px;
  text-align: center;
}

.third h3 {
  font-family: "Poppins";
  font-size: 13px;
  letter-spacing: 5px;
  text-align: center;
  color: #462cb2;
}

.third h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: bold;
  color: black;
  text-align: center;
}

footer {
  color: white;
  background-image: linear-gradient(rgba(2, 4, 3, 0.8), rgba(2, 4, 3, 0.8)),
    url("../images/michael-footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

footer h3 {
  font-size: 24px;
  font-family: "Playfair Display", serif;
}

footer a {
  font-family: "Roboto", serif;
  color: white;
  opacity: 0.8;
}

footer p {
  font-family: "Poppins";
  font-size: 16px;
  opacity: 0.8;
}

footer ul {
  padding: 0;
}

footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 960px) {
  header {
    padding: 30px 0;
  }

  header h1 {
    font-size: 48px;
  }

  header h2 {
    font-size: 20px;
  }

  header h3 {
    font-size: 12px;
  }

  .grid {
    grid-template-columns: 1fr;
    grid-gap: 32px;
  }

  section {
    padding: 30px;
  }
}
