html, body {
  padding: 0;
  margin: 0;
  background-color: #242424;
}

.landing-page {
  position: relative;
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.floating-h1 {
  position: absolute;
  /* font-family: 'Impact', sans-serif; */
  font-size: 3rem;
  color: white;
  user-select: none;
  will-change: transform;
  text-align: center;
}

.psych-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff0066, #ffcc00, #33cc33, #3399ff);
  background-size: 400% 400%;
  animation: psychAnimation 6s ease-in-out infinite;
  z-index: -1;
  will-change: background-position;
}

@keyframes psychAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.accept-cookies-box {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 20px;
  border-radius: 5px;
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.button-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.accept-button {
  background-color: grey;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.decline-button {
  background-color: green;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.options-button {
  background-color: rgb(102, 150, 167);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.close-button {
  background-color: rgb(167, 141, 93);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}