:root {
  width: 100vw;
  overflow-x: hidden;
}
body {
  font-size: 0.8.4rem;
  color: #393a3d;
  font-weight: 400;
  font-family: avenir, helvetica, sans-serif;
}
.landing {
  display: flex;
  width: 100vw;
  height: 100vh;
  background-image: url("/img/landing.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.landing-text h2 {
  font-weight: 800;
  letter-spacing: 0.04;
  font-size: 3em;
}

.landing-text {
  display: flex;
  flex-direction: column;
  width: 40%;

  margin-left: 0;
  height: 100%;
  padding: 4em;
  padding-top: 10%;
  background: rgba(243, 243, 243, 0.8);
  background: -webkit-linear-gradient(
    right,
    rgba(243, 243, 243, 0.9),
    rgba(197, 198, 193, 0.7)
  );
  background: -moz-linear-gradient(
    right,
    rgba(243, 243, 243, 0.9),
    rgba(197, 198, 193, 0.7)
  );
  background: linear-gradient(
    to left,
    rgba(243, 243, 243, 0.9),
    rgba(197, 198, 193, 0.7)
  );
}

.landing-text .c-btn {
  background-color: #1b8381;
  border-color: #1b8381;
  line-height: 1.4;
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  width: fit-content;
  border-radius: 0.4em;
  color: whitesmoke;
  font-weight: 400;
  cursor: pointer;
}
.landing-text > * + * {
  margin-top: 4%;
}
.app-store {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

.app-store img {
  width: 60%;
  cursor: pointer;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #dffdf5;
  padding: 0.5em;
  padding-left: 5%;
  padding-right: 5%;
}
.info > div {
  display: flex;
  justify-content: flex-start;
}

.info > div * + * {
  margin-left: 0.5em;
}
.features {
  text-align: center;
  padding-top: 5em;
  background-color: #eefffd;
}
.features .more {
  display: flex;
  justify-content: space-around;
  padding: 5%;
}
.more > div {
  width: 30%;
}

.security {
  width: 8em;
  margin: auto;
}
.security-info {
  width: 40%;
  margin: auto;
}

footer {
  background-color: #342b50;
  text-align: center;
  color: whitesmoke;
  min-height: 30vh;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

footer .c-btn {
  border: 3px whitesmoke solid;
  width: fit-content;
  margin: auto;
  cursor: pointer;
  padding: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 0.4em;
  margin-top: 2em;
  margin-bottom: 2em;
}

@media only screen and (max-width: 700px) {
  .landing-text {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .info {
    display: flex;
    flex-direction: column;
  }
  .info > * + * {
    margin-top: 1.5em;
  }

  .features .more {
    display: flex;
    flex-direction: column;
    padding: 5%;
  }
  .more > div {
    width: 100%;
  }

  .security {
    width: 70%;
    margin: auto;
  }
  .security-info {
    width: 80%;
    margin: auto;
  }
  .app-store {
    display: flex;
    justify-content: space-between;
    width: 80%;
  }
}
