* {
  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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 10px;
  padding: 5% 5% 0;
}

.title {
  width: 90%;
}

.content__text {
  width: 90%;
}

.text1 {
  margin-top: -15%;
}

@keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.btn {
  animation: scaleAnimation 1.5s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
  .content__text {
    width: 70%;
  }
}
