* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.app {
  background: url(images/bg.webp);
  background-size: 100% 100%;
  background-position: center bottom;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.content {
  background: url(images/bg-content.webp);
  background-size: 100% 100%;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 2%;
  width: 40%;
}

.app__content__main {
  background: url(images/bg-tick.webp);
  background-size: 100% 100%;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 5% 3%;
  gap: 20px;
}

.text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-redirect {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-redirect.active {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
}

.text-tick {
  cursor: pointer;
  position: relative;
}

@keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn {
  animation: scaleAnimation 1.5s ease-in-out infinite;
}

.tick {
  display: none;
  width: 4.5%;
  position: absolute;
  top: 0;
  left: 0;
}

.app--mb {
  display: none;
}

@media screen and (max-width: 768px) {
  .app {
    display: none;
  }

  .app--mb {
    background: url(images/bg.webp);
    background-size: 100% 100%;
    background-position: center bottom;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .app--mb .content {
    background: url(images/bg-content.webp);
    background-size: 100% 100%;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5%;
    width: 100%;
  }

  .app--mb .app__content__main {
    background: url(images/bg-tick.webp);
    background-size: 100% 100%;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5% 3%;
    gap: 20px;
  }

  .app--mb .text {
    width: 80%;
    margin: 5% 0;
  }

  .app--mb .btn-redirect {
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
  }

  .app--mb .btn-redirect.active {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
  }

  .tick {
    display: none;
    width: 7%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
