@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap");
body, html {
  height: 100%;
}

body {
  font-family: "Montserrat";
  margin: 0;
  background-color: #323145;
  color: white;
}

header img {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  width: 40px;
}

@media (min-width: 840px) {
  header img {
    display: none;
  }
}

header nav ul {
  display: none;
  margin: 0;
  list-style-type: none;
}

@media (min-width: 840px) {
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

header nav ul li {
  padding: 1em;
  margin-top: 25px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.3em;
  display: block;
}

@media (min-width: 840px) {
  header nav ul li a {
    font-size: 1em;
  }
}

header nav ul li a:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translate(10%);
          transform: translate(10%);
  text-decoration: underline;
}

header .active {
  display: block;
  background: #272636;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: calc(100% + 51em);
  padding: 1em;
}

section.intro {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5em 1.4em;
}

@media (min-width: 840px) {
  section.intro {
    padding-left: 2.5em;
    padding-top: 8em;
  }
}

section.intro img {
  max-width: 500px;
  min-width: 30%;
  padding: 2em;
}

@media (min-width: 840px) {
  section.intro .container {
    width: 60%;
  }
}

section.intro h1 {
  font-size: 2em;
}

section.intro p {
  font-size: 1.2em;
  line-height: 1.4em;
}

section.intro .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}

section.intro .form input {
  font-family: "Montserrat";
  padding: 1em;
  background: none;
  border: none;
  border: 1px solid gray;
  border-radius: 10px;
  color: white;
  min-width: 50%;
}

section.intro .form .signup {
  margin-left: 5px;
  min-width: 30%;
}

section.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #1c1c27;
  width: 95%;
  margin: 5% auto;
  border-radius: 10px;
}

@media (min-width: 840px) {
  section.features {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

section.features .item {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  text-align: center;
  padding: 1.2em;
}

section.features .item h3 {
  margin: 1.5em;
  color: #e6e6e6;
}

@media (min-width: 840px) {
  section.features .item h3 {
    font-size: 1rem;
  }
}

section.features .item img {
  min-width: 15rem;
  max-width: 20rem;
  height: 83.11px;
}

@media (min-width: 840px) {
  section.features .item img {
    min-width: 6rem;
    max-width: 8rem;
  }
}

section.features .item p {
  line-height: 1.4em;
  color: #cccccc;
}

@media (min-width: 840px) {
  section.features .item p {
    font-size: .9em;
  }
}

.btn {
  background-color: #7A6DE3;
  color: white;
  border: none;
  padding: 1em;
  border-radius: 5px;
}

p {
  margin: 0;
}
/*# sourceMappingURL=style.css.map */