:root {
  --got-blue: #00a1d6;
  --parchment: #eee8dd;
  --got-green: #0ed80e;
  --got-red: #d81813;
  --deep-space: #1e1014;
}

.body-container {
  flex-direction: row;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.body {
  background-color: #eee8dd;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-sticky {
  z-index: 2;
  width: 50%;
  height: 100vh;
  background-image: url('../images/Screen-Shot-2022-05-29-at-12.54.47-PM.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.site-content {
  width: 50%;
  height: auto;
  max-width: 960px;
  flex-direction: column;
  display: flex;
  overflow: scroll;
}

.image {
  width: 25%;
}

.hero-tagline {
  padding: 9% 9% 6%;
  font-size: 55px;
  line-height: 1.3;
}

.marquee-container {
  height: 75px;
  flex: none;
  margin-top: 25px;
  margin-bottom: 0;
  padding-top: 15px;
  position: relative;
  overflow: hidden;
}

.scrolling-marquee {
  align-items: center;
  display: flex;
}

.marquee-text {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.marquee-element {
  background-color: var(--got-blue);
  color: var(--parchment);
  border-radius: 9px;
  flex: none;
  margin-right: 32px;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 600;
  display: inline;
  box-shadow: 3px 3px 20px -7px rgba(30, 16, 20, .94);
}

.marquee-element.green {
  background-color: var(--got-green);
  text-transform: uppercase;
}

.marquee-element.red {
  background-color: var(--got-red);
}

.html-embed {
  display: none;
}

.button-section {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 25px;
  padding-left: 9%;
  display: flex;
}

.social-button {
  background-color: var(--deep-space);
  color: var(--parchment);
  border-radius: 9px;
  align-items: center;
  margin-bottom: 22px;
  padding: 20px 34px;
  font-size: 24px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.social-button:hover {
  background-color: var(--got-blue);
  transform: scale(1.05);
  box-shadow: 4px 4px 20px -2px rgba(30, 16, 20, .55);
}

.social-button.is-youtube:hover {
  background-color: var(--got-red);
}

.social-button.is-medium:hover {
  background-color: #00c400;
}

.text-block {
  font-size: 56px;
}

.scrolling-marquee-fast {
  align-items: center;
  display: flex;
}

.marquee-container-back {
  height: 75px;
  direction: rtl;
  flex: none;
  margin-bottom: 25px;
  padding-top: 15px;
  position: relative;
  overflow: hidden;
}

.social-icon {
  height: 20px;
  margin-right: 16px;
  display: inline;
}

.button-text {
  display: inline;
}

@media screen and (max-width: 991px) {
  .body-container {
    flex-direction: column;
    position: static;
  }

  .hero-sticky {
    width: 100%;
    height: 50vh;
    background-image: url('../images/Screen-Shot-2022-05-29-at-2.51.46-PM.png');
    background-position: 0 0;
    background-size: cover;
  }

  .site-content {
    width: 100%;
    height: auto;
  }

  .hero-tagline {
    font-size: 48px;
  }

  .button-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  .hero-sticky {
    height: 200px;
  }

  .hero-tagline {
    font-size: 26px;
  }

  .marquee-element {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }

  .button-section {
    align-items: center;
    padding-left: 0%;
  }

  .social-button {
    padding-left: 22px;
    padding-right: 22px;
    font-size: 17px;
  }

  .social-icon {
    height: 14px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 479px) {
  .hero-sticky {
    height: 150px;
  }

  .hero-tagline {
    padding-bottom: 9%;
    font-size: 22px;
  }

  .marquee-container {
    height: 50px;
    margin-top: -5px;
    margin-bottom: 0;
  }

  .marquee-element {
    margin-right: 18px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 11px;
    box-shadow: 0 0 rgba(30, 16, 20, .94);
  }

  .button-section {
    flex-direction: row;
    justify-content: space-between;
    margin-left: 9%;
    margin-right: 9%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .social-button {
    width: 75px;
    height: 75px;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }

  .social-button:hover {
    box-shadow: 0 0 rgba(30, 16, 20, .55);
  }

  .social-button.is-twitter {
    margin-left: 10px;
    margin-right: 10px;
  }

  .marquee-container-back {
    height: 50px;
    margin-bottom: 45px;
  }

  .social-icon {
    height: 23px;
    margin-right: 0;
  }

  .button-text {
    display: none;
  }
}


