* {
  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: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title,
.text {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn {
  width: 60%;
  gap: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn a img {
  animation: scaleAnimation 1.5s infinite ease-in-out;
}

.title-mb {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 20%;
  padding: 30px;
  border: 2px solid #000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.popup .close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 3rem;
  cursor: pointer;
  color: #4179dc;
}

.title-popup {
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: bold;
  color: #4179dc;
}

.description {
  font-size: 2.5rem;
  line-height: 1.7;
  color: #5c5c5c;
  text-align: center;
}

.btn-km {
  background: #4179dc;
  display: block;
  text-align: center;
  padding: 20px 30px;
  font-size: 2rem;
  border-radius: 10px;
  color: #fff;
}

.btn-km:hover {
  opacity: 0.7;
  cursor: pointer;
}

.title-mb,
.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 bottom;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
  }

  .content {
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 20px 0;
  }

  .btn {
    width: 90%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .title-mb,
  .text-mb {
    display: block;
    width: 100%;
  }

  .title,
  .text {
    display: none;
  }

  .popup {
    width: 90%;
  }

  .description {
    font-size: 1.5rem;
  }

  .title-popup {
    font-size: 2rem;
  }
  .btn-km {
    padding: 15px 10px;
    font-size: 1.2rem;
  }
}
