* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.app {
  background: url(./images/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.content {
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.title {
  width: 50%;
}

.text {
  position: relative;
}

.btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn a img {
  animation: scaleAnimation 1.5s infinite ease-in-out;
}

.bg-qt {
  background: url(./images/bg-qt.webp);
  background-size: 100% 100%;
  width: 60%;
  padding: 110px 10px 31px;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -5%;
}

.qt {
  width: 90%;
}

.colon {
  font-size: 7rem;
  font-weight: bold;
  color: #ffa96c;
  margin: 0;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  gap: 10px;
  width: 90%;
  height: 100%;
}

.time-block {
  border-radius: 30px;
  padding: 15px 0;
  text-align: center;
  height: 90%;
  width: 20%;
  background: #000917;
  border: 3px #0223dd solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  padding: 6px;
  border-radius: 10px;
}

.label {
  font-size: 1.5rem;
  color: #7b90b1;
  margin-top: 4px;
  font-weight: 500;
}

.text-mb {
  display: none;
}

.content__main {
  width: 70%;
  position: relative;
}

.btn1,
.btn2 {
  width: 45%;
  height: 20%;
  background: transparent;
  position: absolute;
  bottom: 10%;
}

.btn1 {
  left: 4%;
}

.btn2 {
  right: 4%;
}

.content__main-mb {
  display: none;
}

@media screen and (max-width: 768px) {
  .app {
    background: url(./images/bg-mb.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .content__main {
    display: none;
  }

  .content__main-mb {
    display: block;
    position: relative;
    width: 70%;
  }

  .btn1,
  .btn2 {
    width: 90%;
    height: 18%;
    background: transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn1 {
    bottom: 30%;
  }

  .btn2 {
  }

  .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
  }

  .text {
    display: none;
  }

  .title {
    width: 70%;
  }

  .text-mb {
    display: block;
    position: relative;
    width: 70%;
  }

  .btn {
    top: -10%;
    width: 70%;
  }

  .bg-qt {
    margin-top: -7%;
    padding: 40px 18px 17px;
    width: 90%;
  }

  .countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    gap: 10px;
    width: 80%;
    height: 95%;
  }

  .number,
  .label {
    font-size: 1.2rem;
  }

  .colon {
    font-size: 3rem;
  }

  .time-block {
    width: 100%;
    height: 70%;
    border-radius: 10px;
  }
}
