@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
}

body .navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

body .navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

body .navbar .navbar-nav li {
  margin-left: 10px;
}

body .navbar .navbar-nav li a {
  border: 2px solid #8A51C3;
  padding: 5px 10px;
  color: black !important;
}

body .navbar .navbar-nav li a:hover {
  background-color: #8A51C3;
  color: white !important;
}

body .donate {
  position: fixed;
  right: 5px;
  bottom: 5px;
}

body .donate img {
  width: 50px;
}

body .cover {
  margin-top: 20px;
}

body .cover .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .cover .logo img {
  width: 150px;
}

body .about {
  margin-top: 20px;
  font-size: 20px;
  text-align: justify;
}

body .about .bg-light {
  padding: 15px;
  border-radius: 5px;
}

body .features {
  margin-top: 50px;
}

body .features .features-box {
  width: 100%;
  padding: 40px 0;
  border: 1px solid #7545AE;
  color: #7545AE;
  margin-top: 10px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

body .features .features-box:hover {
  background-color: #7545AE;
  color: white;
}

body .features .close-btn {
  background-color: #8C52C5;
}

body .features .close {
  background-color: #8C52C5 !important;
  color: white;
  border: 0;
  font-weight: bold;
  padding: 5px 10px;
}

body .last {
  margin: 40px 0 20px 0;
  text-align: center;
}

body footer {
  padding: 20px 0;
  background-color: #7545AE;
  color: white;
}

body footer .designer {
  text-align: center;
}

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