* {
  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: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.app-change {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  position: relative;
  margin: 0 25%;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tick {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  margin-bottom: 10%;
}

.content p {
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #1d7a19;
}

#countdown {
  color: #00b145;
  font-weight: 400;
}

@keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn a img {
  /* animation: scaleAnimation 1.5s infinite ease-in-out; */
}

#notification-box {
  position: fixed;
  top: 5%;
  left: 5%;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

#notification-box img {
  width: 26px;
  height: 26px;
}

.text-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;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .tick {
    width: 30%;
  }

  .content p {
    font-size: 2rem;
  }
}
