* {
  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);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 20px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(./images/content.webp);
  background-size: 100% 100%;
  padding: 3px 20px 20px;
}

.robot {
  width: 70%;
  margin-bottom: -30%;
}

input {
  position: absolute;
  height: 30%;
  left: 50%;
  bottom: 2%;
  width: 80%;
  border: none;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8rem;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #d9d9d9, #fcfcfc);
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 5%;
}

@keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn a img {
  /* animation: scaleAnimation 1.5s infinite ease-in-out; */
}

@media screen and (max-width: 768px) {
  input {
    font-size: 1.2rem;
  }
}
