body {
  margin: 0;
  padding: 0;
  background-color: #f0ede5;
  color: #352826;
}

body,
.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fraunces {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "SOFT" 100,
    "WONK" 1;
}

.hero {
  background-image: url("/img/explosion-hero.gif");
  background-size: cover;
  background-position: left center;
  background-color: rgba(255, 255, 255, 0);
  background-blend-mode: lighten;
  height: 100vh;
  /*width: 100vw;*/
  display: flex;
  align-items: center;
}
.hero-left {
  flex: 1;
  padding: 20px;
}
.hero-right {
  flex: 2;
}
.hero-left h1 {
  font-size: 3rem;
  /*text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.887);*/
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-grid-1 {
  flex: 1;
}
.flex-grid-2 {
  flex: 2;
}
.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .hero {
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .hero-left {
    padding: 10px;
    text-align: center;
  }
  .hero-right {
    display: none;
  }
  .container {
    flex-direction: column;
  }
  img {
    width: 100%;
    height: auto;
  }
  .pricing-page p,
  .pricing-page h2,
  .pricing-page h3 {
    padding: 0 20px 10px;
  }
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f0ede5;
}
.nav-flex {
  flex: 1;
}

.logo {
  height: 50px;
  width: auto;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.site-nav a {
  text-decoration: none;
  color: #352826;
  font-weight: 600;
  flex: 1;
}
.site-nav a:hover {
  color: #974336;
}

.cta {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #974336;
  color: #f0ede5;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
}

.divider {
  border: none;
  /*border-top: 2px solid #B8C75D;*/
  border-top: 2px solid #98acb5;
  margin: 20px auto;
  width: 60%;
}

footer {
  padding: 20px;
  color: #f0ede5;
  background-color: #496572;
}

.page-title {
  text-align: center;
  margin: 40px 0;
  background-image: url("/img/flying-header-websize.gif");
  background-size: cover;
  background-position: center;
  height: 330px;
  align-items: center;
  display: flex;
}

.page-title h1 {
  flex: 1;
  font-size: 3em;
}

.pricing-table {
  border-collapse: collapse;
  width: 80%;
  margin: 0 20px;
}
.pricing-table th {
  text-align: left;
  padding: 5px;
}
.pricing-table td {
  border-top: solid 1px #000;
  padding: 5px;
}

.pricing-page p {
  margin: 0;
}
.pricing-page .cta-button {
  margin-top: 1em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  text-decoration: none;
  color: #f0ede5;
  font-weight: 600;
}
.footer-nav a:hover {
  color: #98acb5;
}