body {
  background: #000;
}

#banner {
  padding: 8px 0;
}

#banner .img {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}

#banner .img img {
  width: 20%;
}

#banner .text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner .text p {
  margin: 0;
  color: rgb(115, 129, 137);
}

header .navbar-brand img {
  width: 30%;
}

header a.nav-link {
  color: rgb(115, 129, 137);
  transition: 0.2s linear;
}

header a.nav-link:hover {
  color: rgb(90 172 255);
}

header .btn-custom {
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  border-radius: 4px;
  background-color: rgb(255, 150, 153);
  text-decoration: none;
  color: rgb(16, 21, 33);
}

header .navbar-nav li {
  margin-left: 12px;
}

#hero {
  padding: 48px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  border-top: 0.5px solid rgb(90 172 255);
  border-bottom: 0.5px solid rgb(90 172 255);
  background: linear-gradient(125deg, rgb(0, 0, 0) 6%, rgb(90 172 255) 90%);
}

#hero .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}

#hero .wrap h1 {
  font-size: 48px;
  color: rgb(90 172 255);
}

#hero .wrap p {
  color: rgb(115, 129, 137);
  color: #8d8c8c;
}

#hero .wrap .buttons {
  margin-top: 24px;
}

#hero .wrap .buttons a {
  padding: 16px 36px;
  text-decoration: none;
  background-color: rgb(115, 129, 137);
  border: 1px solid rgb(115, 129, 137);
  color: #fff;
}

#hero .wrap .buttons a:last-of-type {
  background-color: transparent;
  margin-left: 12px;
}

#about {
  padding: 48px 0;
}

#about .img img {
  width: 100%;
  height: 300px;
}

#about .text h1 {
  color: rgb(90 172 255);
}

#about .text p {
  margin-top: 12px;
  color: rgb(115, 129, 137);
}

#game {
  padding: 48px 0;
}

#game .img img {
  width: 100%;
}

#game .text h2 {
  color: rgb(90 172 255);
}

#game .text ul {
  list-style: square;
}

#game .text ul li {
  color: rgb(115, 129, 137);
}

#game .text .btn-play {
  padding: 16px 36px;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid rgb(90 172 255);
  color: #fff;
  display: inline-block;
  margin-top: 24px;
}

#game .headline h1 {
  color: #fff;
  text-align: center;
}

#game .headline p {
  color: rgb(115, 129, 137);
  text-align: center;
}

#game .img img {
  width: 100%;
}

#game .btn-play {
  padding: 16px 36px;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid rgb(90 172 255);
  color: #fff;
  display: inline-block;
  margin-top: 24px;
}

#why {
  padding: 48px 0;
}

#why .headline h1 {
  color: rgb(90 172 255);
  text-align: center;
}

#why .headline p {
  color: rgb(115, 129, 137);
  text-align: center;
}

#why .item .img {
  background-color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 100%;
  width: 150px;
  margin: auto;
}

#why .item .img img {
  border: 3px solid rgb(90 172 255);
  width: 150px;
  height: 150px;
  border-radius: 100%;
}

#why .item .desc {
  margin-top: 12px;
}

#why .item .desc h4 {
  text-align: center;
  color: rgb(90 172 255);
}

#why .item .desc p {
  text-align: center;
  color: rgb(115, 129, 137);
}

#disclaimer {
  border-top: 0.5px solid rgb(90 172 255);
  border-bottom: 0.5px solid rgb(90 172 255);
  background: linear-gradient(125deg, rgb(0, 0, 0) 40%, rgb(90 172 255) 200%);
  padding: 48px 0;
}

#disclaimer .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#disclaimer .wrap .img {
  display: flex;
  justify-content: center;
}

#disclaimer .wrap .img img {
  width: 30%;
}

#disclaimer .wrap .headline h3 {
  color: rgb(90 172 255);
  text-align: center;
}

#disclaimer .wrap .headline p {
  color: rgb(115, 129, 137);
  text-align: center;
}

#disclaimer .wrap .logos {
  display: flex;
}

#disclaimer .wrap .logos a {
  margin: 0 24px;
}

#disclaimer .wrap .logos a img {
  width: 100%;
  height: 36px;
}

footer {
  padding-top: 24px;
  padding-bottom: 8px;
}

footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .wrap .img a {
  display: flex;
  justify-content: center;
}

footer .wrap .img a img {
  width: 30%;
}

footer .wrap .list {
  margin-top: 12px;
}

footer .wrap .list ul {
  padding-inline-start: 0;
  display: flex;
  flex-direction: row;
}

footer .wrap .list ul li {
  display: inline-block;
  margin: 0 12px;
}

footer .wrap .list ul li a.nav-link {
  color: #fff;
  transition: 0.2s linear;
  font-size: 12px;
}

footer .wrap .list ul li a.nav-link:hover {
  color: rgb(90 172 255);
}

footer .wrap .list:last-of-type {
  border-top: 1px solid rgb(40, 40, 40);
  border-bottom: 1px solid rgb(40, 40, 40);
}

footer .wrap p {
  color: rgb(115, 129, 137);
  margin: 0;
  font-size: 10px;
  margin-top: 8px;
}

footer .wrap p span {
  color: rgb(255, 150, 153);
}

#privacy {
  padding: 24px 0;
}

#privacy h1 {
  color: rgb(90 172 255);
}

#privacy h3,
#privacy h2,
#privacy h4,
#privacy p,
#privacy li {
  color: rgb(115, 129, 137);
}

#contact {
  padding: 48px 0;
}

#contact h1 {
  text-align: center;
  color: rgb(90 172 255);
}

#contact p {
  text-align: center;
  color: rgb(115, 129, 137);
}

#contact .form {
  display: flex;
  justify-content: center;
}

#contact .form form {
  width: 70%;
  margin: auto;
}

#contact .form form .form-group {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

#contact .form form .form-group input {
  background-color: #fff;
  padding: 22px 24px;
  border: none;
  outline: none;
  width: 48%;
}

#contact .form form .form-group textarea {
  background-color: #fff;
  padding: 22px 24px;
  border: none;
  outline: none;
  width: 100%;
}

#contact .form form button {
  margin-top: 24px;
  text-decoration: none;
  background-color: rgb(90 172 255);
  color: #fff;
  padding: 12px 36px;
  border: none;
  outline: none;
  font-size: 16px;
  display: inline-block;
}



#play h1{
  color: rgb(90 172 255);
}

#play {
  color: rgb(115, 129, 137);
}

/*# sourceMappingURL=style.css.map */



@media (max-width:600px) {

  #hero .wrap h1 {
    font-size: 24px;
  }

  #contact .form form {
    width: 100%;
  }

  header .navbar-nav {
    margin-left: 0%;
  }

  .navbar-brand {
    width: 70%;
  }


  footer .wrap .list ul li a.nav-link {
    font-size: 8px;
  }

  footer .wrap .list ul li {
    margin: 0 4px;
  }
}