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

a {
  text-decoration: none;
  color: inherit;
}

body {
  color: #ff9c00;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 16vw 5.33333vw 2.66667vw;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.875;
}

.title {
  font-size: 7.46667vw;
  color: #ff9c00;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.53333vw;
}

.subtitle {
  font-size: 5.06667vw;
  color: #ff9c00;
}

.logo {
  /*background: url(../images/logo.png) no-repeat center;*/
  width: 28.53333vw;
  height: auto;
  position: relative;
  margin: 9.66667vw 18.66667vw;
  background-size: contain;
}

.text1 {
  font-size: 20px;
}

.text2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.73333vw;
  color: #ff9c00;
}

.download-btn {
  background-image: url(../images/do.png),linear-gradient(270deg, #fc8d56 10%, #ff9c00);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 13.33333vw;
  line-height: 13.33333vw;
  color: #fff;
  font-size: 3.73333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
  border-radius: 1.06667vw;
  position: relative;
  font-weight: 400;
  border: none;
  margin-top: 4.66667vw;
  margin-bottom: 2.66667vw;
}

.download-btn:hover {
  transform: scale(1.05);
}

.copyright {
  color: #ff9c00;
  font-size: 3.2vw;
  margin-top: 6vw;
}

.skeleton {
  background: #f2f2f2;
  color: transparent !important;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  display: block;
  position: absolute;
  left: -150%;
  top: 0;
  height: 100%;
  width: 150%;
  background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 50%, #f2f2f2 75%);
  animation: skeleton-shimmer 1.2s infinite;
}

@keyframes skeleton-shimmer {
  0% { left: -150%; }
  100% { left: 100%; }
}