.noto-sans-<uniquifier > {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  font-family: "Playfair Display", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #505562;
}

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

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

section.secondary {
  background: #f8f8f8;
}

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

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

.btn:hover {
  background-color: #26282c;
}

.grid {
  display: grid;
}

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

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

.grid-2-columns-long {
  grid-template-columns: 1.5fr 2fr;
  grid-gap: 40px;
}

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

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
    url(../images/rowing-8-sunset.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 150px 0;
  color: white;
  text-align: center;
  margin: 0;
}

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

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

header h3 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 3px;
}

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

main {
  background-color: white;
}

.section-1-image {
  width: 450px;
  height: auto;
}

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

main h3 {
  font-weight: 700px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 5px;
  color: #171619;
  margin: 0;
  margin: 10px 0;
}

main p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #171619;
  opacity: 0.5;
}

.card {
  background-color: white;
  margin: 30px 0;
}

.card-header {
}

.card-header img {
  display: block;
  margin: 0;
}

.logo {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 5px;
}

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

.card-body {
  padding: 30px;
}

.card h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #272044;
  margin: 0;
}

.card h5 {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  color: #272044;
  margin: 0;
  margin-top: 10px;
}

.card p {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: #171619;
}

.contact-email {
  text-decoration: none;
  color: #272044;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 70px;
}

.card ul {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  margin-top: 10px;
}

.card li {
  list-style: none;
  color: #272044;
  font-size: 12px;
  line-height: 1.5;
}

.section-3 h3 {
  margin-bottom: 40px;
}

footer {
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)),
    url(../images/rowing-8-footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

footer h3 {
  font-weight: 700px;
  font-size: 20px;
  line-height: 1;
  padding-top: -50px;
}

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

footer ul {
  padding: 0;
}

footer li {
  list-style: none;
}

footer a {
  color: white;
  opacity: 0.9;
  margin: 0;
  padding: 0;
}

@media (max-width: 1025px) {
  body {
    padding: 0 30px;
    max-width: 1000px;
  }

  .container {
    max-width: 1000px;
  }

  header {
    padding: 60px 0;
  }

  header h1 {
    font-size: 48px;
  }

  header h2 {
    font-size: 20px;
  }

  header h3 {
    font-size: 12px;
  }

  .section-1-image {
    width: 350px;
    height: auto;
  }

  main h2 {
    font-size: 13px;
  }

  main h3 {
    font-size: 22px;
  }

  main p {
    font-size: 12px;
  }

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

  .grid-3-columns {
    margin-left: 0;
    grid-gap: 30px;
  }

  .logo {
    display: none;
  }

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

  .instagram-media {
    max-width: 100% !important;
    min-width: auto !important;
  }
}

@media (max-width: 430px) {
  body {
    text-align: center;
  }

  .container {
    max-width: 400px;
  }

  header {
    padding: 60px 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;
  }

  .section-1-image {
    width: 300px;
    height: auto;
  }

  main h2 {
    font-size: 13px;
  }

  main h3 {
    font-size: 22px;
  }

  main p {
    font-size: 12px;
  }

  .instagram {
    width: 300px;
    height: auto;
  }
}
