:root {
  --heading-font-family: "Inter", sans-serif;
  --deafault-font-family: "Poppins", sans-serif;
}

body {
  background-color: black;
  color: #272044;
  font-family: var(--deafault-font-family);
  margin: 0 auto;
}

section {
  margin: 0 auto;
  padding: 100px;
}

section.secondary {
  background-color: #f8f8f8;
}

header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/src/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 200px 0;
}

header h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 1.5;
  margin: 0;
}

header h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  margin: 0;
}

header h3 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
  padding-bottom: 25px;
}

header hr {
  border-top: 2px solid white;
  margin: 10px auto 0;
}

header a {
  display: inline-block;
  background-color: white;
  color: #272044;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 3px;
  margin-top: 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px 32px;
}

main {
  background-color: white;
}

main h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0 0 20px;
  opacity: 0.3;
  text-transform: uppercase;
}

main h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  margin: 0 0 50px;
}

main h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin: 0;
}

main h5 {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

main p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
}

footer {
  background-image:
    linear-gradient(rgba(15, 62, 69, 0.9), rgba(39, 32, 68, 0.9)),
    url("/src/images/spiritedaway.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

footer h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

footer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.6;
}

footer ul,
footer li {
  padding: 0;
}

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

footer a {
  color: white;
  opacity: 0.7;
}

footer a:hover {
  text-decoration: none;
}

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

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

.grid {
  display: grid;
  grid-gap: 64px;
}

.grid.grid-3-columns,
.grid.grid-3-columns-double {
  grid-gap: 30px;
}

.grid-2-columns {
  grid-template-columns: repeat(2, 1fr);
}

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

.grid-3-columns-double {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

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

.embed {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.embed-1-1-ratio {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.card {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.card-body {
  padding: 30px;
}

.card-footer {
  padding: 0 30px 30px;
}

.btn {
  background-color: #196672;
  color: white;
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 3px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

  header h1 {
    font-size: 48px;
    line-height: 1;
    margin: 30px 0;
  }

  header h2 {
    font-size: 20px;
  }

  header h3 {
    font-size: 12px;
  }

  header hr {
    border-top: 1px solid white;
    margin: 15px auto 0;
  }

  section {
    padding: 30px;
  }

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

  .embed-1-1-ratio {
    aspect-ratio: 16 / 9;
  }
}
