* {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: relative;
  font-family: Arial, sans-serif;
  background-color: black;
}
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.learn-more {
  background-color: yellow;
  color: black;
  border: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  padding-block: 20px;
  width: 100vw;
  max-width: 300px;
  text-decoration: none;
  display: block;
  animation: pulse 2s infinite;
}
.learn-more:hover {
  background-color: #ffed4e;
  transform: scale(1.05);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.footer_disclaimers {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-inline: 10px;
  li {
    list-style: none;
  }
  li a {
    color: white;
    text-decoration: none;
  }
}
