body {
  padding: 0;
  margin: 0;
}

.App {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-image: url("assets/images/bg-web.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  align-items: center;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .App {
    background-size: auto 100%;
    background-position: center top;
  }
}

@media screen and (max-width: 375px) {
  .App {
    background-size: 150% auto;
    background-position: center top;
  }
}

@media screen and (max-width: 768px) {
  .App {
    justify-content: flex-start;
    padding-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .App {
    background-size: 200% auto;
  }
}

a {
  text-decoration: none;
  padding: 4px 8px;
}

.list-button {
  width: 100%;
  /*padding: 20px;*/
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.button-item {
  padding: 4px 8px;
  height: 32px;
}

.ladi-image {
  animation-name: pulse;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  margin: auto;
}

.ladi-image-background {
  width: 100%;
  height: 60px;
  background-image: url("../public/dang-ki.png");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.ios-background {
  width: 100%;
  height: 60px;
  background-image: url("../public/ios.png");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.android-background {
  width: 100%;
  height: 60px;
  background-image: url("../public/android.png");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.logo-background {
  width: 100%;
  height: 60px;
  background-image: url("../public/play.png");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ladi-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fade-1 {
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

.fade-2 {
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.fade-3 {
  animation: fadeInUp 1s ease-out;
  animation-delay: 1s;
  animation-fill-mode: both;
}