.body {
  height: 100%;
  background-color: #000;
  color: #fff;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-div {
  padding: 8px 56px;
}

.nav {
  position: -webkit-sticky;
  position: sticky;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  background-color: rgba(30, 33, 36, 0.58);
  color: #fff;
}

.logo {
  padding-right: 0px;
  padding-left: 0px;
  -webkit-transition: text-shadow 200ms ease;
  transition: text-shadow 200ms ease;
  font-family: Gugi, sans-serif;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
}

.logo:hover {
  text-shadow: 3px 3px 0 #1e2124;
}

.nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-link {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 18px;
}

.nav-link:hover {
  color: #c6dec6;
}

.nav-link:active {
  color: #c6dec6;
}

.invite-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 54px;
  padding: 0px 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 12px;
  -webkit-transition: color 200ms ease, background-color 200ms ease;
  transition: color 200ms ease, background-color 200ms ease;
  font-family: Gugi, sans-serif;
  font-size: 20px;
}

.invite-button:hover {
  background-color: #c6dec6;
  color: #1e2124;
}

.invite-button:active {
  border-style: none;
  border-width: 1px;
  border-color: #000;
  background-color: #c6dec6;
}

.invite-button.hidden-on-mobile {
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 24px;
  background-color: #c6dec6;
}

.invite-button.hidden-on-mobile:hover {
  background-color: #c6dec6;
}

.splash {
  position: static;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  max-height: none;
  min-height: auto;
  min-width: auto;
  -o-object-fit: none;
  object-fit: none;
}

.splash-container {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  height: auto;
  max-height: 100vh;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -o-object-fit: none;
  object-fit: none;
}

.invite-button-mobile {
  position: relative;
  display: none;
  height: auto;
  max-height: none;
  min-height: auto;
  background-color: #c6dec6;
  -o-object-fit: contain;
  object-fit: contain;
}

.ferg {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  overflow: visible;
  width: 100%;
  height: 80vh;
  max-height: none;
  max-width: none;
  min-height: auto;
  min-width: auto;
  margin: auto;
  padding-top: 0px;
  padding-bottom: 18px;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.blurb {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  width: auto;
  height: auto;
  max-height: none;
  min-height: auto;
  margin: auto;
  padding-top: 0px;
  padding-bottom: 45px;
  font-family: Gugi, sans-serif;
  font-size: 32px;
  font-style: normal;
  text-align: center;
  text-shadow: 2px 2px 0 #1e2124;
  -o-object-fit: contain;
  object-fit: contain;
}

.with-love {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  max-height: none;
  min-height: auto;
  margin: auto;
  font-family: Montserrat, sans-serif;
  font-style: italic;
  text-align: center;
  text-shadow: 1px 1px 0 #1e2124;
  -o-object-fit: contain;
  object-fit: contain;
}

.background {
  position: fixed;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c6dec6), to(#d6cfd3));
  background-image: linear-gradient(180deg, #c6dec6, #d6cfd3);
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 100vh;
  max-width: 100vw;
  min-height: 100vh;
  min-width: 100vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.container-2 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  overflow: visible;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

@media screen and (min-width: 1280px) {
  .nav {
    position: fixed;
  }

  .blurb {
    font-size: 34px;
  }
}

@media screen and (min-width: 1440px) {
  .blurb {
    font-size: 34px;
  }
}

@media screen and (min-width: 1920px) {
  .ferg {
    padding-bottom: 0px;
  }

  .blurb {
    font-size: 40px;
  }

  .with-love {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .body {
    background-color: #8f3e3e;
  }

  .nav-div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-height: none;
    margin-right: 30px;
    margin-left: 30px;
    padding: 0px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .nav {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .logo {
    margin-right: 0px;
    margin-left: 0px;
    font-size: 36px;
  }

  .logo:hover {
    text-shadow: none;
  }

  .nav-links {
    max-height: none;
    margin-top: 0px;
    padding-right: 30px;
    padding-bottom: 11px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    background-color: rgba(30, 33, 36, 0.58);
  }

  .menu-button {
    padding: 0px;
  }

  .menu-button.w--open {
    background-color: transparent;
  }

  .nav-link {
    -webkit-transition-property: none;
    transition-property: none;
    text-align: right;
  }

  .invite-button.hidden-on-mobile {
    display: none;
  }

  .menu-lottie {
    width: 40px;
  }

  .splash {
    position: fixed;
  }

  .splash-container {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .invite-button-mobile {
    position: static;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 87px;
    display: block;
    width: auto;
    height: auto;
    margin: auto auto 12px;
    padding: 34px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 4px 4px 0 0 #1e2124;
    font-family: Gugi, sans-serif;
    font-size: 34px;
    text-align: center;
  }

  .invite-button-mobile:hover {
    background-color: #c6dec6;
    color: #1e2124;
  }

  .invite-button-mobile:active {
    border: 1px none #000;
    background-color: #c6dec6;
    box-shadow: none;
    -webkit-transform: translate(3px, 3px);
    -ms-transform: translate(3px, 3px);
    transform: translate(3px, 3px);
    color: #1e2124;
  }

  .ferg {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: none;
    max-width: none;
    min-height: auto;
    margin: 0px auto;
    padding-bottom: 0px;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .blurb {
    position: static;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 0px;
    font-size: 34px;
  }

  .with-love {
    position: static;
    margin-bottom: 24px;
  }

  .section {
    display: block;
  }

  .container-2 {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
}

@media screen and (max-width: 767px) {
  .menu-lottie {
    width: 36px;
  }

  .splash-container {
    height: auto;
    max-width: none;
  }

  .invite-button-mobile {
    bottom: 8%;
    width: 50vw;
    margin-bottom: 12px;
    padding-right: 12px;
    padding-left: 12px;
    box-shadow: 4px 4px 0 0 #1e2124;
    font-size: 30px;
  }

  .ferg {
    width: 100%;
    height: 75vh;
    margin-top: 50px;
  }

  .blurb {
    font-size: 22px;
    text-shadow: 2px 2px 0 #1e2124;
  }

  .with-love {
    margin-bottom: 24px;
  }

  .container-2 {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .body {
    background-color: transparent;
    background-image: none;
  }

  .nav {
    position: fixed;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .logo {
    font-size: 26px;
  }

  .menu-lottie {
    width: 32px;
  }

  .splash {
    position: relative;
  }

  .splash-container {
    height: auto;
    max-width: none;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .invite-button-mobile {
    position: static;
    left: 0%;
    top: 343px;
    right: 0%;
    bottom: 0%;
    width: 65%;
    height: auto;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 20px;
    box-shadow: 3px 3px 0 0 #1e2124;
    font-size: 24px;
  }

  .ferg {
    overflow: visible;
    width: 100%;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: auto;
    min-width: auto;
    margin-top: 0px;
    padding-bottom: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -o-object-fit: scale-down;
    object-fit: scale-down;
  }

  .blurb {
    position: static;
    display: block;
    overflow: visible;
    width: auto;
    height: auto;
    margin-top: auto;
    padding: 10px 20px;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    font-size: 1.5em;
    text-shadow: 2px 2px 0 #1e2124;
  }

  .with-love {
    margin-top: 0px;
    margin-bottom: auto;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .background {
    position: fixed;
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#c6dec6), to(#d6cfd3));
    background-image: linear-gradient(180deg, #c6dec6, #d6cfd3);
  }

  .container-2 {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: block;
    margin-top: 60px;
    margin-bottom: 0px;
    padding-top: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

