@font-face {
  font-family: "Balinera";
  src: url("/fonts/Balinera.ttf") format("opentype");
}

@font-face {
  font-family: "Theater";
  src: url("/fonts/Theater_Bold.otf") format("opentype");
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.ttf") format("opentype");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

.f-montserrat {
  font-family: 'Montserrat';
}

.f-theater {
  font-family: 'Theater';
}

.f-balinera {
  font-family: 'Balinera';
}

.navbar {
  position: fixed;
  width: 100%;
}

.navbar .container {
  position: relative;
}

.navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}

.asterisk {
  color: red;
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: url("/images/notebook.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.nav-item {
  z-index: 4;
  font-family: 'Theater';
  font-size: 1.5rem;
}

.nav-item .nav-link {
  opacity: 1;
  color: white !important;
}

.smear {
  position: absolute;
  background-image: url("/images/nav-smear.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  background-blend-mode: multiply;
  width: 35%;
  height: 18rem;
  opacity: 0.9;
  z-index: 1;
  right: -7%;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 768px) {
  .smear {
    width: 60%;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .logo {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.logo .hero-logo {
  width: 650px;
}

@media screen and (max-width: 768px) {
  .logo .hero-logo {
    width: 200px;
  }
}

.logo .back-again {
  width: 400px;
}

@media screen and (max-width: 768px) {
  .logo .back-again {
    width: 200px;
  }
}

.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.date h1 {
  color: green;
  font-size: 8rem;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .date h1 {
    font-size: 4rem;
  }
}

.date p {
  font-size: 5rem;
  margin-bottom: 14rem;
}

@media screen and (max-width: 768px) {
  .date p {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.party {
  position: absolute;
  width: 60%;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .party {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .party {
    width: 80%;
  }
}

.loop {
  position: absolute;
  left: -12%;
  top: -12%;
  width: 30%;
}

.flag-left {
  position: absolute;
  left: 0;
  bottom: -20%;
  width: 400px;
}

.left-missed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 10%;
}

.left-missed p {
  font-size: 2rem;
  margin: 0;
}

.left-missed p:first-child {
  -webkit-text-stroke: 1px black;
  font-size: 1.8rem;
}

.register {
  background-color: black;
  color: white;
  padding: 4rem 2rem;
  position: relative;
}

.register::before {
  content: '';
  width: 100%;
  position: absolute;
  height: 20px;
  background-image: url("/images/divider.png");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 100%;
  left: 0;
}

.register h1 .title {
  font-size: 5rem;
}

.register h1 .extra {
  font-size: 2rem;
  letter-spacing: 2px;
}

.register .register-logo-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.register .register-logo-block .register-logo {
  padding: 50px;
  background-image: url("/images/register-smear.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 65%;
}

.register .register-logo-block .is-coming {
  margin-top: -30px;
}

.register #mc_embed_signup {
  margin: 2rem 0;
  padding: 0 6rem;
}

@media screen and (max-width: 768px) {
  .register #mc_embed_signup {
    padding: 0 3rem;
  }
}

.register .clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.register .clear .subscribe {
  width: 100%;
  background-color: transparent;
  background-image: url("/images/subscribe-button.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-family: 'Theater';
  font-size: 1.5rem;
  border: none;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .register .clear .subscribe {
    margin-top: 30px;
  }
}

.register .input-1 {
  background-image: url("/images/input-1.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.register .input-2 {
  display: block;
  background-image: url("/images/input-2.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.register .register-now-block {
  margin-bottom: -3rem;
}

.register .register-now {
  background-image: url("/images/green-smear.png");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 30px;
  background-position: 0 50%;
}

.register .covid-safe {
  text-align: center;
  background-image: url("/images/covid-safe.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 20%;
  color: black;
}

.register .covid-safe p {
  padding: 10px;
  font-size: 3.5rem;
  margin: 0;
  padding-top: 25px;
}

@media screen and (max-width: 768px) {
  .register .covid-safe p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .register .covid-safe {
    background-position: 50% 60%;
    padding: 0 1rem;
  }
}

.register .footer {
  font-size: 1.4rem;
  margin-top: 10px;
}

.register .footer .lighter {
  opacity: 0.8;
  -webkit-text-stroke: 1px black;
}

.register .flag-right {
  position: absolute;
  width: 25%;
  right: 0;
  bottom: 80%;
  z-index: 1;
}
/*# sourceMappingURL=styles.css.map */