body {
  color: #344e61;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(2rem, 2.5vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 10px;
  font-size: clamp(.75rem, 1vw, .875rem);
}

.body-wrpr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ffb96e;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  display: grid;
}

.cover {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #ffb15c;
  background-image: url('../images/bg-shapes.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.mascot {
  background-image: url('../images/bg-turtle-mascot.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  background-color: #fff;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 30rem;
  padding: 1rem;
  display: flex;
}

.button {
  color: #344e61;
  background-color: #cdf9f9;
  border-radius: .5rem;
  font-weight: 700;
}

.brand {
  width: 100%;
  max-width: 24rem;
}

@media screen and (max-width: 767px) {
  .body-wrpr {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    height: auto;
    display: grid;
  }

  .cover {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mascot {
    min-height: 60vh;
  }

  .box {
    border-radius: 1rem;
  }

  #w-node-_0fe8e114-7cbf-87b0-b994-cde4f9ec790c-89d473db {
    order: 9999;
  }
}


