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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 62.5%;
  background-color: #0A0C1C;
  font-family: "Ital", sans-serif;
  color: azure;
}

.box__img, .box__img--shadow {
  border-radius: 0.8em 0.8em 0 0;
}

.box {
  display: flex;
  flex-direction: column;
  margin: 0.8em;
  height: 100%;
  width: 100%;
  background-color: #1B1937;
  border-radius: 0.8em;
}
.box__img {
  background-image: url("../images/image-header-mobile.jpg");
  background-position: center;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
}
.box__img--shadow {
  background-color: rgba(151, 56, 211, 0.728);
  width: 100%;
  height: 100%;
}
.box__content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em;
}
.box__content--text {
  text-align: center;
  margin: 1em;
}
.box__content--text-header {
  font-size: 28px;
  letter-spacing: 35;
}
.box__content--text-header-special {
  color: #AB5CDB;
}
.box__content--text-description {
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 25;
  color: white;
}
.box__content-margin {
  margin: 1em;
}
.box__content--stats {
  display: flex;
  flex-direction: column;
  padding: 1em;
}
.box__content--stats-item {
  padding: 0.6em;
}
.box__content--stats-item-header {
  font-size: 2.4em;
  padding-bottom: 2px;
}
.box__content--stats-item-description {
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.2em;
  line-height: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  body {
    padding: 13em 7.8em 13em 7.8em;
  }
  .box {
    flex-direction: row-reverse;
  }
  .box__img {
    background-image: url('../images/image-header-desktop.jpg');
    width: 100%;
    height: auto;
  }
  .box__content--text {
    text-align: left;
  }
  .box__content--stats {
    margin-top: 8em;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    text-align: center;
  }
  .box__content--stats-item {
    display: flex;
    flex-direction: column;
    padding: 0 3em 0 3em;
  }
  .box__content--stats-item-header {
    text-align: left;
  }
  .box__img, .box__img--shadow {
    border-radius: 0 0.8em 0.8em 0;
  }
}/*# sourceMappingURL=style.css.map */
