html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

video {
  height: 100vh;
  width: auto;
  display: block;
}



.app-badges {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 10vh;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.app-badges a {
  display: inline-block;
  line-height: 0;
}

.app-badges img {
  height: 100px; /* Adjust as needed */
  width: auto;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.app-badges a:hover img,
.app-badges a:focus img {
  transform: scale(1.04);
  opacity: 0.9;
}

@media (max-width: 480px) {
  .app-badges {
    gap: 12px;
  }
  .app-badges img {
    height: 48px;
  }
}
