* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #101728;
  color: white;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

nav {
  background-color: rgba(255, 255, 255, 0);
  z-index: 1000;
  margin-bottom: -40px;
}
nav img {
  width: 100px;
}
nav .navbar-brand:hover {
  color: white;
  text-shadow: 3px 3px 3px #1f41bb;
}
nav button {
  width: 100px;
  font-size: 17px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0);
  color: white;
  border: 1px solid white;
  transition: 0.3s;
}
nav button:hover {
  color: #e5de20;
  border: 1px solid #e5de20;
}
nav button:active {
  position: relative;
  top: 5px;
}

h1 {
  background-color: #fbda61;
  background-image: linear-gradient(45deg, #fbda61 0%, #ff5acd 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: rgba(255, 255, 255, 0);
  background-size: 150%;
  font-weight: 900;
  animation: gradientColor 3s infinite alternate;
}

#hero-image {
  overflow: hidden;
  padding-top: 30px;
  margin-bottom: 50px;
}
#hero-image img {
  transform: scaleX(-1);
}
#hero-image h2 {
  font-weight: 700;
  font-size: 40px;
  text-shadow: 3px 3px 3px #1f41bb;
  margin-top: 50px;
}
#hero-image h2 span {
  font-size: 50px;
}
#hero-image h3 {
  font-family: "Londrina Outline", cursive;
  font-size: 140px;
  font-weight: 900;
  margin-top: -20px;
  color: #e5de20;
}
#hero-image button {
  width: 350px;
  font-size: 40px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0);
  color: white;
  border: 3px solid white;
  transition: 0.3s;
}
#hero-image button:hover {
  color: #e5de20;
  border: 3px solid #e5de20;
}
#hero-image button:active {
  position: relative;
  top: 5px;
}

#about {
  overflow: hidden;
  margin-top: 50px;
}
#about p {
  font-size: 20px;
  margin-top: 20px;
  padding: 0 70px;
  text-align: justify;
}

#features {
  overflow: hidden;
  margin-top: 100px;
}
#features p,
#features h1 {
  margin-left: 100px;
}
#features h1 {
  margin-top: 100px;
  font-size: 40px;
}
#features p {
  padding-right: 80px;
  text-align: justify;
}
#features .pengguna {
  margin: 0;
}
#features .pengguna h1 {
  margin-left: 0;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 70px;
}
#features .pengguna p {
  background-color: #d9afd9;
  background-image: linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);
  color: white;
  text-shadow: 3px 3px 3px black;
  padding-right: 0;
  margin-left: 0;
  font-size: 50px;
  font-weight: 700;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  line-height: 200px;
}

footer {
  margin-top: 200px;
  text-shadow: 3px 3px 3px black;
}
footer img {
  transition: 1s;
  width: 20%;
}
footer img:hover {
  margin-top: -150px;
  padding-bottom: 150px;
}

@media screen and (max-width: 992px) {
  #hero-image {
    padding-top: 150px;
    text-align: center;
  }
  #hero-image .text-hero {
    margin-left: -150px;
  }
  #hero-image img {
    margin-top: -150px;
  }
  #hero-image h2 {
    margin-top: -70px;
    font-size: 20px;
  }
  #hero-image h2 span {
    font-size: 30px;
  }
  #hero-image h3 {
    margin-top: -10px;
    font-size: 100px;
  }
  #hero-image button {
    width: 100%;
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  nav img {
    width: 70px;
  }
  #hero-image {
    padding-top: 50px;
  }
  #hero-image img {
    width: 100%;
    margin-top: -50px;
  }
  #hero-image .text-hero {
    margin: 0;
  }
  #about h1 {
    font-size: 35px;
  }
  #about p {
    padding: 0;
    font-size: 17px;
  }
  #features p,
  #features h1 {
    margin-left: 0;
  }
  #features h1 {
    margin-top: 30px;
    font-size: 30px;
  }
  #features p {
    padding-right: 0;
  }
  #features .pengguna h1 {
    font-size: 40px;
  }
  #features .pengguna p {
    font-size: 35px;
    font-weight: 700;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    line-height: 150px;
    margin: 0 auto;
  }
  footer {
    padding: 10px;
  }
  footer img {
    width: 70%;
  }
}
@keyframes gradientColor {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}/*# sourceMappingURL=style.css.map */