* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.app {
  background: url(./images/bg.webp) no-repeat center center;
  background-size: 100% 100%;
  background-position: center bottom;
  height: 100vh;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 100px;
  margin-top: 5%;
}

.logo {
  width: 40%;
}

.text {
  margin-top: 2%;
  margin-bottom: -30%;
}

.btn {
  width: 90%;
}

@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%;
  height: 20%;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.colon {
  font-size: 7rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.main__content {
  width: 100%;
}

.qt {
  width: 90%;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  gap: 5px;
  width: 100%;
  position: absolute;
  bottom: 10%;
}

.time-block {
  border-radius: 16px;
  padding: 8px 0;
  text-align: center;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;

  border: 0.401px solid #1c5601;
  background: #fdff07;
  backdrop-filter: blur(0.8010438680648804px);
}

.number {
  font-size: 2rem;
  font-weight: bold;
  color: #235a00;
  padding: 6px;
  padding-bottom: 0;
  border-radius: 10px;
}

.register {
  margin-top: 2%;
  width: 90%;
}

.label {
  font-size: 1rem;
  color: #235a00;
  margin-top: 0px;
}

@media screen and (max-width: 768px) {
  .bg-qt {
    background: url(./images/bg-qt.webp);
    background-size: 100% 100%;
    height: 25%;
  }

  .content {
    margin-top: 3%;
    width: 90%;
    gap: 5px;
  }

  .countdown {
    gap: 5px;
    margin-bottom: -1%;
  }

  .time-block {
    width: 27%;
    padding: 10px 0;
    border-radius: 16px;
    gap: 2px;
  }

  .number {
    font-size: 1rem;
    padding: 0;
  }

  .label {
    font-size: 0.8rem;
  }

  .btn {
    width: 90%;
  }

  .text,
  .title {
    width: 80%;
  }

  .text {
    margin-top: 5%;
    width: 80%;
    margin-bottom: -25%;
  }

  .popup {
    width: 90%;
    padding: 30px;
    border-radius: 10px;
  }

  .popup .close {
    width: 15px;
    height: 15px;
    font-size: 1.5rem;
    padding: 10px;
  }

  .description {
    font-size: 1.5rem;
  }

  .title-popup {
    font-size: 2rem;
  }

  .btn-km img {
    width: 100%;
  }
}
