html,body {
  margin: 0;
  scroll-snap-type: y mandatory;
  font-family: 'Signika Negative', sans-serif;
  font-size: 30px;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  scroll-snap-align: start;
}



.box {
  padding: 4vw;
  background: white;
  border-radius: 7px;
  cursor: pointer;
}

.logosection .box {
  background: transparent;
}

h1 {
  font-family: 'Khand', sans-serif;
  font-size: 3.0em;
  margin-bottom: .5em;
  color: #1F1F46;
  line-height: 5vw;
}

p {
  font-size: 1em;
  color: #62627B;
  line-height: 40px;
}

.animation {
  transition: 0.5s ease;
}

.animation:hover {
  box-shadow: 0 15px 25px -25px #1F1F46;
  transform: translateY(-8px);
}

.logosection .animation:hover {
  box-shadow: 0 0px 0px 0px rgba(31, 31, 70, 0);
  transform: translateY(-8px);
}

.img {
  box-shadow: 0px 0px 10px rgb(199 199 199);
}

.gradient1 {
  background-image: linear-gradient(120deg, #000000 30%, #0bbbff 100%);
  /*background-image: linear-gradient(120deg, #addbd7 0%, #6cb5ff 100%);*/
}
.gradient2 {
  background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}
.gradient3 {
  background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
}
.gradient4 {
  background-image: linear-gradient(to top, #000000 0%, #1f1f1f 100%);
}



@media (min-width: 700px) {
  html,body {
    font-size: 18px;
  }
  p {
    line-height: 20px;
  }
}
@media (max-width: 700px) {
  html,body {
    font-size: 18px;
  }
  p {
    line-height: 20px;
  }
}