body, html {
  margin: 0;
  padding: 0;
}

html {
  height: -webkit-fill-available;
}

body {
  height: 100vh;
  height: -webkit-fill-available;
  display: grid;
  grid-template-rows: 10vh 1fr 1fr auto auto 27px;
  background-color: black;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

@media screen and (min-width: 800px) {
  body {
    grid-template-rows: 10vh 1fr 1fr auto auto;
  }
}

* {
  box-sizing: border-box;
}

.row-1 {
  grid-row-start: 2;
}

.row-2 {
  grid-row-start: 3;
  align-self: center;
}

@media screen and (min-width: 800px) {
  .row-2 {
    align-self: flex-start;
  }
}

.row-3 {
  grid-row-start: 4;
  display: grid;
  justify-content: center;
}

@media screen and (min-width: 800px) {
  .row-3 {
    padding-bottom: 20px;
  }
}

.row-4 {
  grid-row-start: 5;
}

@media screen and (min-width: 800px) {
  .row-4 {
    position: absolute;
    bottom: 20px;
    right: 34px;
  }
}

.logo {
  position: relative;
  z-index: 3;
  pointer-events: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 150px;
  display: block;
  margin-bottom: 41px;
}

@media screen and (min-width: 800px) {
  .logo {
    margin-bottom: 45px;
  }
}

#canvas {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.counter-wrap {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
}

@media screen and (min-width: 800px) {
  .counter-wrap {
    font-size: 42px;
    margin-bottom: 28px;
  }
}

.counter {
  font-family: serif;
}

.labels {
  margin-top: 6px;
  color: grey;
  font-size: 12px;
  letter-spacing: .1em;
  display: flex;
  column-gap: 29px;
}

@media screen and (min-width: 800px) {
  .labels {
    font-size: 14px;
    column-gap: 46px;
  }
}

.label {
}

@media screen and (min-width: 800px) {
  .label {
  }
}

.label:first-child {
  position: relative;
  left: 3px;
}

.label:nth-child(2) {
  margin-left: 4px;
}

@media screen and (min-width: 800px) {
  .label:nth-child(2) {
    margin-left: 7px;
  }
}

.mail-section {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .mail-section {
  }
}

.mail-text {
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0;
}

.mail-link {
  display: block;
  color: white;
  margin-bottom: 5px;
  position: relative;
  z-index: 3;
  text-decoration: none;
}

@media screen and (min-width: 800px) {
  .mail-link {
  }
}

.mail-divider {
  margin-top: 13px;
  margin-bottom: 13px;
  margin-left: auto;
  margin-right: auto;
  width: 184px;
  height: 1px;
  background-color: white;
  opacity: .75;
}

.notify-form-wrap {
  position: relative;
  z-index: 3;
  width: 300px;
  justify-self: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 800px) {
  .notify-form-wrap {
    margin-bottom: 0;
  }
}

.notify-form-wrap #mc_embed_signup .notify-form {
  position: relative;
  width: 300px;
  margin: 0;
}

.notify-form-wrap #mc_embed_signup {
  background: transparent;
  width: 300px;
}

.email-wrap {
  position: relative;
}


.notify-icon {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
  border-radius: 50%;
  border: none;
  background-color: white;
  opacity: .5;
}

.notify-icon::before, .notify-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  width: 12px;
  height: 2px;
}

.notify-icon::before {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 27px;
}

.notify-icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 19px;
}



.designed-by {
  position: relative;
  z-index: 3;
  color: #484848;
  font-size: 12px;
  text-align: center;
  margin: 0;
}

@media screen and (min-width: 800px) {
  .designed-by {
    text-align: right;
  }
}

.designed-by .link {
  color: #484848;
  text-decoration: none;
}

.fade-in {
  opacity: 0;
}

.fade-in.active {
  opacity: 1;
  transition: opacity 1s;
}
