* {
  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%;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  margin-top: 5%;
}

.register {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}

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

.text {
  width: 50%;
}

.title-mb {
  display: none;
}

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

.btn a img, .register 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: none;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
    padding-bottom: 3%;
  }

  .title {
    margin-top: 15%;
    width: 70%;
  }

  .text {
    display: none;
  }

  .title-mb {
    display: block;
  }

  .register {
    width: 50%;
  }

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

  .text-mb {
    display: block;
    width: 70%;
  }

  #notification-box {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }

  .app-change {
    margin: 0 5%;
  }
}
