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

body {
  background-color: #000;
}

header {
  height: 50px;
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

header .logo p {
  color: #fff;
  font-weight: bold;
  font-size: 1.6em;
}

.banner {
  height: 300px;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #02030b), color-stop(48%, #090979), color-stop(96%, #02030b));
  background: linear-gradient(90deg, #02030b 10%, #090979 48%, #02030b 96%);
}

.banner figure {
  height: 100%;
  text-align: center;
}

.banner figure img {
  width: 100%;
  height: 100%;
  max-width: 650px;
}

.button-play {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button-play button {
  height: 70%;
  width: 300px;
  border-radius: 35px;
  border: 4px solid #002fb4;
  background: #00b1ff;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-size: 1.8em;
}

@media (hover: hover) {
  .button-play button:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.feature .grid-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  -webkit-column-gap: 2em;
          column-gap: 2em;
  row-gap: 2em;
  padding: 1em 2em;
}

@media only screen and (min-width: 768px) {
  .feature .grid-item {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 1024px) {
  .feature .grid-item {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.feature .grid-item .item {
  text-align: center;
  color: #fff;
}

.feature .grid-item .item .icon {
  margin-bottom: 1em;
}

.feature .grid-item .item .icon img {
  width: 60px;
  height: 60px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.feature .grid-item .item .des p {
  width: 50%;
  margin: 0 auto;
}

.in-game-picture {
  background: #050072;
  margin-top: 2em;
}

.in-game-picture .grid-item {
  text-align: center;
  padding: 2em 0;
}

.in-game-picture .grid-item .item img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .in-game-picture .grid-item .item img {
    width: auto;
  }
}

.controller {
  padding: 1em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .controller {
    padding: 4em;
  }
}

.controller figure img {
  width: 100%;
  height: auto;
}

.controller figure .img-joy {
  width: 40%;
}

.changelog {
  padding: 2em;
}

.changelog h2 {
  text-align: center;
}

.changelog .group {
  margin: 1em 0;
  padding: .5em;
  background-color: #9ae0ff;
}

.changelog .group p.date {
  margin-bottom: 2em;
  text-decoration: underline;
}

.changelog .group ul {
  list-style: decimal;
  list-style-position: inside;
}

.contact {
  position: fixed;
  width: 178px;
  height: 140px;
  background-color: #030cb5;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  border-radius: 50%;
}

.contact .txt-email {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.contact .txt-email a {
  color: #fff;
}

footer {
  background: #050072;
}

footer p {
  color: #fff;
  padding: .8em;
  text-align: center;
}

footer p a {
  color: inherit;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */