* {
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

input[type="text"] {
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  border: 0;
  padding: 0px 15px 2px 15px !important;
  width: 250px;
  height: 40px;
  margin: 0 8px;
}

input[type="button"] {
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 30px;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 10px;
  background: #ee6503;
  color: white;
}

input[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

.main {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  background: #141E30;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left bottom, left top, from(#243B55), to(#141E30));
  background: linear-gradient(to top, #243B55, #141E30);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: cover;
  width: 100vw;
}

.main .header {
  min-height: 65px;
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid white;
}

.main .header .navbar {
  width: 100%;
  min-height: 65px;
  max-width: 1024px;
}

.main .header .navbar nav {
  width: 100%;
  z-index: 10;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 65px;
  padding-left: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.main .header .navbar nav #logo {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-family: 'Courgette', cursive;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .header .navbar nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.main .header .navbar nav .nav-links a {
  color: white;
  text-decoration: none;
  text-align: center;
  width: 150px;
}

.main .header .navbar nav .nav-links :hover {
  opacity: 0.6;
}

.main .introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
  width: 100%;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .introduction .headline {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20PX;
}

.main .introduction .headline .get-notified-input {
  padding-top: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .introduction .headline h1 {
  margin: 20px 0px;
  font-weight: 100;
  font-size: 40px;
}

.main .introduction .headline h2 {
  margin: 20px 0px;
  font-weight: 100;
  font-size: 25px;
}

.main .introduction .headline p {
  font-size: 16px;
  margin: 20px 0px;
  text-align: justify;
}

.main .introduction .cover img {
  height: 30vh;
}

/*main{
    width: 100%;
    padding-top: 71px;
    .introduction{
        display: flex;
        padding-top: 25px;
        
        width: 90%;
        margin: auto;
        align-items: center;
        .headline {
            color: white;
            //min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            h1 {
                margin: 20px 0px;
                font-weight: 100;
                font-size: 25px;
            }
            p {
                font-size: 16px;
                margin: 20px 0px;
                text-align: justify;
            }
            button {
                font-family: $mainFont;
                margin: 20px 0px;
                background: #27ae60;
                border: 2px solid #27ae60;
                padding: 10px 35px;
                font-weight: bold;
                color: rgb(255, 255, 255);
                cursor: pointer;
            }
        }
    }
    
}*/
@media screen and (max-width: 768px) {
  .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #141E30;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-gradient(linear, left bottom, left top, from(#243B55), to(#141E30));
    background: linear-gradient(to top, #243B55, #141E30);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  .main .header .navbar nav {
    z-index: 10;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main .header .navbar nav #logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    height: inherit;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    position: relative;
  }
  .main .header .navbar nav #logo .burger {
    z-index: 100;
    position: absolute;
    right: 50px;
    cursor: pointer;
  }
  .main .header .navbar nav #logo .burger .line1,
  .main .header .navbar nav #logo .burger .line2,
  .main .header .navbar nav #logo .burger .line3 {
    width: 20px;
    height: 3px;
    background-color: white;
    margin: 4px 0px;
  }
  .main .header .navbar nav #logo .burger .line1 {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main .header .navbar nav #logo .burger .line1-animate {
    -webkit-transform: rotateZ(45deg) translate(40%, 50%);
            transform: rotateZ(45deg) translate(40%, 50%);
  }
  .main .header .navbar nav #logo .burger .line2 {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main .header .navbar nav #logo .burger .line2-animate {
    width: 0%;
  }
  .main .header .navbar nav #logo .burger .line3 {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main .header .navbar nav #logo .burger .line3-animate {
    -webkit-transform: rotateZ(-45deg) translate(45%, -50%);
            transform: rotateZ(-45deg) translate(45%, -50%);
  }
  .main .header .navbar nav .nav-links {
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    position: absolute;
    right: 0;
    top: 66px;
    background-color: #ee6503;
    height: 30vh;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main .header .navbar nav .nav-links a {
    text-align: center;
    width: 100%;
  }
  .main .header .navbar nav .burger-animation {
    opacity: 1;
    width: 100%;
  }
  .main .introduction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main .introduction .headline .get-notified-input {
    -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;
  }
  .main .introduction .headline h1 {
    font-size: 25px;
  }
  .main .introduction .headline h2 {
    font-size: 20px;
  }
  .main .introduction .headline p {
    padding: 0px 10px;
    text-align: center;
    line-height: 1.6em;
  }
}
/*# sourceMappingURL=main.css.map */