body {
  font-family: "roboto";
  background-color: #94a475;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
header {
  text-align: center;
  color: #fff;
  padding: 200px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/header.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
}
header h3 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
}
header h1 {
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  margin: 30px 0;
}
header h2 {
  font-weight: 900;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
}
main {
  background-color: #f7f7de;
  border-radius: 4px;
}

main h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 5px;
  color: #272044;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

main h3 {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.5;
  color: #272044;
  margin: 0;
}

main p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #272044;
  opacity: 0.8;
}

.primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 64px;
  margin-top: 25px;
}
.primary img {
  width: 100%;
  margin-top: 66px;
  border-radius: 5px;
}
.secondery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px;
}
.secondery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  margin-bottom: 10px;
}
.card {
  border: none;
  border-radius: 3px;
}
.card:hover {
  scale: calc(1.02);
}
.card-header {
  background: #fff;
}
.card-footer {
  padding: 0 30px 30px;
  border: none;
  background: #fff;
}
.btn {
  display: block;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  background-color: #94a475;
  text-decoration: none;
}
.btn:hover {
  transition: all 400ms ease-in-out;
  color: #94a475;
  background-color: #000;
}
.embed {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 55px;
}
.instagram-embed {
  width: 350px;
  height: 600px;
  overflow: hidden;
  margin: 10px;
  display: inline-block;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 64px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(images/footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 85px;
  margin-top: 10px;
  border-radius: 4px;
}
footer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

footer p {
  font-weight: 400;
  font-size: 16px;
  opacity: 0.9;
  margin-right: 20px;
  line-height: 24px;
}

footer ul {
  padding: 0;
}

footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer a {
  text-decoration: none;
  color: #94a475;
}
@media (max-width: 960px) {
  header {
    padding: 60px 0;
  }

  header h1 {
    font-size: 48px;
  }

  header h2 {
    font-size: 20px;
  }

  header h3 {
    font-size: 12px;
  }
  section {
    padding: 30px;
  }
  main h2 {
    text-align: left;
  }
  .primary {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  .primary img {
    padding: 0px;
  }
  .secondery {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  .card-header {
    border: none;
  }
  .card-header img {
    display: none;
  }
  .embed {
    display: grid;
    grid-template-columns: 1fr;
    aspect-ratio: 16 / 9;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}
