/* ************************************************************************************************** VARIABLES */
/* Extends */
#hero ul a, #icons a, footer ul li {
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

/* ************************************************************************************************** GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background-color: transparent;
  color: orangered;
}

::selection {
  background-color: transparent;
  color: orangered;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-image: url(../images/herobg.svg);
  background-color: #23292d;
  background-size: contain;
  background-repeat: no-repeat;
  font-family: 'Baloo Tamma 2', cursive;
  color: white;
  scroll-behavior: smooth;
}

body a {
  color: #9f7be1;
}

/* **************************************************************************************************  HERO STYLES */
#hero img {
  display: block;
  max-width: 100%;
  width: 95px;
  margin: 40px auto 10px;
}

#hero ul {
  max-width: 280px;
  margin: 0 auto;
}

#hero ul a:hover {
  text-decoration: none;
  color: white;
}

#hero ul a:nth-child(1) {
  color: white;
}

#hero ul a li {
  display: inline;
  font-size: 1.1rem;
  padding: 7px;
  text-align: center;
}

#hero ul a li:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

#hero h1 {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  margin-top: 80px;
  font-size: 3rem;
}

#hero p {
  display: block;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.3rem;
  color: #aaaaaa;
}

#hero .download {
  display: block;
  width: 220px;
  margin: 30px auto 20px;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#8241f9), to(#4e277b));
  background-image: linear-gradient(to bottom, #8241f9, #4e277b);
  border-color: #150a27;
  padding: 0.6em 1.25em;
  border-radius: 6px;
  color: white;
  font-size: 1.4rem;
}

#hero .download:hover {
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6a36ca), to(#6a36ca));
  background-image: linear-gradient(to bottom, #6a36ca, #6a36ca);
}

#hero span {
  display: block;
  text-align: center;
  color: #aaaaaa;
  font-size: 0.9em;
}

#hero span a:hover {
  text-decoration: none;
  color: #aaaaaa;
}

/* **************************************************************************************************  APP STYLES */
#app img {
  display: block;
  max-width: 65%;
  margin: 50px auto;
  -webkit-box-shadow: 0px 0px 40px -5px black;
          box-shadow: 0px 0px 40px -5px black;
}

@media (max-width: 768px) {
  #app img {
    max-width: 100%;
  }
}

/* **************************************************************************************************  SECTION ONE, TWO &Three STYLES */
#one,
#two,
#three {
  width: 65%;
  margin-top: 100px;
}

#one img,
#two img,
#three img {
  max-width: 70%;
}

#one h2,
#two h2,
#three h2 {
  font-size: 1.2rem;
  margin-top: 40px;
}

#one p,
#two p,
#three p {
  font-size: 1rem;
  color: #aaaaaa;
}

@media (max-width: 1020px) {
  #one,
  #two,
  #three {
    width: 100%;
  }
  #one img,
  #two img,
  #three img {
    max-width: 80%;
  }
  #one h2,
  #two h2,
  #three h2 {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #one,
  #two,
  #three {
    width: 100%;
  }
  #one img,
  #two img,
  #three img {
    display: block;
    margin: auto;
  }
  #one h2,
  #two h2,
  #three h2 {
    text-align: center;
  }
  #one p,
  #two p,
  #three p {
    text-align: center;
  }
}

/* **************************************************************************************************  ICONS STYLES */
#icons {
  margin-top: 80px;
  width: 65%;
}

#icons .row {
  margin-bottom: 40px;
}

#icons .row img {
  min-width: 45px;
  max-height: 45px;
  background-color: #9f7be1;
  border-radius: 10px;
  padding: 11px;
}

#icons .row h3 {
  margin-top: 10px;
  font-size: 1rem;
}

#icons .row p {
  font-size: 0.9rem;
  color: #aaaaaa;
  margin-bottom: 20px;
}

#icons a {
  margin-top: 80px;
  background-color: transparent;
  border: 1px solid white;
  padding: 12px 28px;
  font-size: 1rem;
  width: 200px;
  color: white;
  text-align: center;
  border-radius: 7px;
}

#icons a:hover {
  text-decoration: none;
  background-color: white;
  color: black;
}

@media (max-width: 992px) {
  #icons {
    width: 100%;
  }
}

/* **************************************************************************************************  DIVIDER STYLES */
#divider {
  width: 120px;
  border-bottom: 1px solid #aaaaaa;
  text-align: center;
  margin: 100px auto 50px;
}

/* **************************************************************************************************  ICONS STYLES */
footer {
  text-align: center;
}

footer ul li {
  display: inline;
  font-size: 1rem;
  padding: 15px;
  color: #9f7be1;
  cursor: pointer;
}

footer ul li:hover {
  color: white;
}

footer p {
  color: #aaaaaa;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  footer ul li {
    display: block;
    padding: 0;
    width: 120px;
    margin: auto;
  }
}
/*# sourceMappingURL=style.css.map */