@font-face {
  font-family: 'Keels';
  src: url('assets/keels.woff2') format('woff2'),
       url('assets/keels.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

body {
  font-family: 'Keels';
  font-size: 15px;
}
a {
  color: white;
  border-bottom: 1px solid;
  text-decoration: none;
  cursor: pointer;
}


/*  Scene */
main {
  color: white;
  text-align: center;
}
.logo {
  width: 13.5em;
}
.boat {
  width: 32vh;
  height: auto;
  position: absolute;
  bottom: 50px;
  left: 40%;
  z-index: 10;
  animation: rock 8s infinite cubic-bezier(0.1, 0.29, 0.8, 0.65);
  transform-origin: bottom;
}
@keyframes rock {
  0% {
    transform: rotate(3deg)
  }
  50% {
    transform: rotate(-3deg)
  }
  100% {
    transform: rotate(3deg)
  }
}
.water {
  background-image: url(/assets/water.svg?v=1630698547844);
    position: absolute;
  width: 100%;
  height: 200px;
  left: 0;
  background-size: 100% 200px;
  background-repeat: no-repeat;
  bottom: 0;
}
.hill {
  position: absolute;
  width: 700px;
  bottom: 130px;
  left: -190px;
  z-index: 9;
  transform: scaleX(-1);
}
.content {
  padding-bottom: 40vh;
  margin: 2em auto 2em auto;
  z-index: 11;
      flex-direction: column;
    align-items: center;
    justify-content: center;
  min-height: 400px;
  width: 100%;
  margin: 1em;
  margin-top: 5em;
}
.text-row {
  display: flex;
  align-items: center;
  margin: 20px 0px;
  justify-content: center;
}
.spacer {
  height: 1em;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0px 10px;
  transform: rotate(10deg);
}
.hero-description {
  max-width: 400px;
  margin: 20px auto;
}
p {
  margin: 0;
}
.signup-form {
  display: none;
  max-width: 400px; 
  margin: 0px auto;
}
#mc_embed_signup .button,  #mc_embed_signup .button:focus {
  -webkit-appearance: none;
  font-family: inherit;
  background: #319B71;
}
main {
  background-image: url('/assets/sky-2.svg?v=1630723752056');
  width: 100vw;
  height: 100vh;
  background-size: cover;
  display: flex;
}
html, body, main {
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hill {
    left: -400px;
  }
  body {
    font-size: 15px;
  }
  .content {
    margin-top: 5em;
  }
  .boat {
    width: 25vh;
    left: calc(50% - 12.5vh)
  }
  input {
    font-size: 16px;
  }
}