@charset "UTF-8";
/* CSS Document */
@font-face {
    font-family: 'sunflower';
    src: url("../FONTS/webfontkit-20200330-140113/madesunflower-webfont.woff2") format('woff2'),
         url("../FONTS/webfontkit-20200330-140113/madesunflower-webfont.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* font-family: 'sunflower'; */
    font-family: 'Public Sans', sans-serif;
}
body {
    animation: colorchange 40s;
    -webkit-animation: colorchange 40s;
    animation-iteration-count: infinite;
  }
  @keyframes colorchange
  {
    0% {background: rgb(162, 229, 212);}
    25%   {background: rgb(228, 232, 202);}
    50%  {background: rgb(236, 194, 178);}
    75%  {background:rgb(200, 196, 239);}
    100%  {background: rgb(162, 229, 212);} 
  }

  @-webkit-keyframes colorchange
  {
    0% {background: rgb(162, 229, 212);}
    25%   {background: rgb(228, 232, 202);}
    50%  {background: rgb(236, 194, 178);}
    75%  {background: rgb(200, 196, 239);}
    100%  {background: rgb(162, 229, 212);} 
  }
  #container {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  #laniaLogo {
      position: relative;
      top: 10px;
      margin: auto;
      width: 30%;
      height: auto;
  }
  #mission {
      position: relative;
      width: 50%;
      margin: auto;
      font-size: 1.2rem;
      font-weight: 100;
      line-height: 25px;
  }
  
  h1 {
      margin-top: 30px;
      font-size: 3rem;
      font-weight: 500;
      margin: 0;
      font-family: 'sunflower';
  }
  .larger {
      font-weight: 400;
      font-size: 1.3rem;
  }
  h2 {
      font-size: 1.5rem;
      font-weight: 300;
  }
  #container a {
      color: black;
  }
  #mc_embed_signup {
      background-color: rgba(0,0,0,0);
      text-align: center;
  }
  form {
      display: flex;
      flex-direction: row;
      align-content: center;
  }
  .button {
    border: none;
    margin-top: 5px;
    text-decoration: none;
    background:black;
    color: #ffffff;
    font-family: sans-serif;
    font-size: .8rem;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out, 
                transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 10px;
}
.button:hover {
    background: rgb(200, 196, 239);
}
@media only screen 
and (max-device-width: 812px) {
    #container {
        top: 5%;
        width: 100%;
        height: 90%;
    }
    #laniaLogo {
        width: 75%;
    }
    .larger {
        font-size: 2rem;
    }
    #mission {
        width: 90%;
        font-size: 1.8rem;
        line-height: 35px;
        margin-bottom: 10px;
    }
    h1 {
        font-size: 5rem;
    }
    h2 {
        font-size: 2.4rem;
    }
    form {
        font-size: 1.8rem;
    }
    .email {
        height: 30px;
        font-size: 1.2rem;
    }
    .button {
        margin-top: 20px;
        font-size: 1.5rem;
        padding: 20px 40px;
    }
    #interest {
        margin-top: 10px;
        font-size: 1.8rem;
    }
}

