* {
  user-select: none;
  padding: 0;
  margin: 0;
}
html {
  padding: 20px;
  background-color: white;
}
body {
  background-color: #f2f2f2;
  border-radius: 10px;
  height: 94vh;
  background-size: 300% 300%;
  background-repeat: no-repeat;
  overflow: hidden;
  animation: q forwards alternate infinite 5s;
}
@keyframes q {
  from {
    background-position: 0% 100%;
  }
  to {
    background-position: 100% 0%;
  }
}
.logo {
  color: black;
  width: fit-content;
  filter: blur(5px);
  padding: 10px;
  padding-left: 20px;
  font-family: tahoma;
  font-size: 25px;
  transition: 0.5s ease-in-out;
}
.container {
  height: 90vh;
  width: 90%;
  max-width: 900px;
  color: black;
  margin: auto;
  padding: 10px;
  font-size: 30px;
}
h3 {
  color: gray;
  margin-bottom: 10px;
}
.features {
  display: inline-flex;
  margin: 5px auto;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  mask-image: linear-gradient(90deg,  rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(90deg,  rgba(0, 0, 0, 0));
  transition: .5s;
}
.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  background-color: white;
  color: black;
  border-radius: 10px;
  scroll-snap-stop: always;
  scroll-snap-align: center;
  transition: 0.1s ease-in-out;
  padding: 100px;
}
.feature:active {
  scale: 0.94;
}
::-webkit-scrollbar {
  display: none;
}
.q {
  position: fixed;
  bottom: 0px;
  width: 100%;
  max-width: 900px;
  height: 100px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  border-radius: 10px 10px 0 0;
}
.f4 {
  background-image: radial-gradient(
    rgb(166, 255, 0),
    rgba(104, 213, 246, 0.865)
  );
  color: white;
  margin-top: 0px;
  background-size: 200% 200%;
  animation: q alternate infinite 4s;
  letter-spacing: 4px;
}
.f4 p {
  margin-left: 5px;
}

@media screen and (max-width: 750px) {
  h1 {
    font-size: 50px;
  }
  h3 {
    font-size: 28px;
  }
  .features {
    flex-wrap: wra;
  }
  .feature {
    padding: 100px;
    font-size: 20px;
  }
}
@media screen and (max-width: 309px) {
  h1 {
    font-size: 40px;
  }
  h3 {
    font-size: 27px;
  }
  .feature {
    padding: 50px;
    font-size: 20px;
  }
}
@media screen and (max-width: 384) {
  h3 {
    font-size: 20px;
  }
  .feature {
    padding: 30px;
    font-size: 20px;
  }
}
