body {
  font-family: "poppins";
  background-color: rgb(53, 45, 64);
}

header {
  background-image: linear-gradient(
      rgba(99, 85, 120, 0.4),
      rgba(99, 85, 120, 0.8)
    ),
    url("../images/coronado-bridge.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 200px 0;
}
header h1 {
  font-weight: 700;
  font-size: 96px;
  line-height: 1.5;
  margin: 30px 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;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
}

header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: white;
  color: #272044;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-block;
  margin-top: 32px;
}
main {
  background-color: white;
}
main h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 5px;
  opacity: 0.3;
  color: #272044;
  text-transform: uppercase;
  margin: 0;
}
main h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #272044;
  margin: 0;
}
main h4 {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 1.5;
}
main h5 {
  font-weight: 700;
  font-style: Bold;
  font-size: 13px;
  line-height: 1.5;
}
main p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #272044;
  opacity: 0.7;
}
section {
  max-width: 100%;
  margin: 0 auto;
  padding: 100px;
}
footer {
  color: white;
  background-image: linear-gradient(
      rgba(53, 45, 64, 0.8),
      rgba(53, 45, 64, 0.8)
    ),
    url("../images/san-diego-city-skyline-sunset-picture-36749-53381.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right 30% top 20%;
}
footer p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.9;
}
footer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul {
  padding: 0;
}
li a {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  margin: 0;
  padding: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin: 30px auto;
  padding: none;
}
.gallery {
  max-width: 400px;
  width: 100%;
  display: block;
}
.img-block {
  margin: 0 auto;
  padding: none;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-gap: 64px;
}
.two-columns {
  grid-template-columns: 1fr 1fr;
}
.three-columns {
  grid-template-columns: 1fr 1fr 1fr;
}
.three-columns-narrow-first {
  grid-template-columns: 1fr 2fr 2fr;
}
section.secondary {
  background-color: #f8f8f8;
}
.text-center {
  text-align: center;
}
.card {
  background-color: white;
  margin: 30px 0;
}

.card-header.grid {
  grid-gap: 0;
}
.card-body {
  padding: 30px;
}

.card-footer {
  padding: 0 30px 30px;
}
.embed {
  width: 100%;
  aspect-ratio: 1/1;
}
.instagram-embed {
  margin: 30px 0;
}
.btn {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  background-color: #462cb3;
  text-decoration: none;
}
.img-responsive {
  width: 100%;
  display: block;
}

#balboa-park {
  object-fit: cover;
  object-position: left;
  aspect-ratio: 1/1;
  max-height: 500px;
  max-width: 100%;
}
@media (max-width: 960px) {
  header {
    padding: 60px 0;
  }
  header h1 {
    font-size: 48px;
  }
  header h2 {
    font-size: 20px;
  }
  header h3 {
    font-size: 12px;
  }
  header a {
    margin-top: 12px;
    padding: 10px 14px;
  }
  section {
    padding: 30px;
  }
  .two-columns {
    text-align: center;
  }
  .grid {
    grid-template-columns: 1fr;
    grid-gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-gap: 64px;
  }
  .card-header img {
    display: none;
  }
  .embed {
    aspect-ratio: 16/9;
  }
}
