html {
  font-size: 20px;
}
@media (max-width: 1440px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 525px) {
  html {
    font-size: 14px;
  }
}

@font-face {
  font-family: "Gotham";
  font-weight: 600;
  src: local("Gotham"), url("./fonts/Gotham-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 400;
  src: local("Gotham"), url("./fonts/GothamHTF-Book.woff") format("woff");
  font-display: swap;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #fff;
  font-family: "Gotham";
  background-repeat: no-repeat;
  background-size: 100% 100%;

  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
#app {
  text-align: center;
  padding: 3rem 2rem;
}
.wp-title {
  font-size: 3.6rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.wp-description {
  font-size: 1rem;
  font-weight: 400;
  max-width: 1282px;
  width: 55%;
  background: rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin: auto;
}
.wp-image {
  width: 22rem;
}

/* for desktop */
@media (min-width: 768px) {
  body {
    background-image: url("../images/bg.png");
  }
  .is-mobile {
    display: none;
  }
}

/* fro mobile */
@media (max-width: 767px) {
  body {
    background-image: url("../images/bg-mobile.png");
  }
  .is-desktop {
    display: none;
  }
  .wp-title {
    font-size: 24px;
  }
  .wp-description {
    width: 90%;
  }
  .wp-image {
    width: 153px;
  }
}
