html {
  background-color: rgba(15, 15, 15, 1);
  color: rgba(255, 255, 255, 0.87);
  font-family: "PT Serif", serif;
  font-size: 16px;
}

body {
  animation: flicker 3s infinite ease-in-out;
  background-image: url("https://res.cloudinary.com/starborn/image/upload/q_auto/v1728109104/wwo/rosie-sun-1L71sPT5XKc-unsplash_ouzxx5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.wisps {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.wisps::before,
.wisps::after {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 2rem rgba(255, 255, 255, 0.2);
  content: "";
  height: 1rem;
  position: absolute;
  width: 1rem;
}

.wisps::before {
  animation: wisp-animation-1 24s infinite ease-in-out;
  left: 40%;
  top: 50%;
}

.wisps::after {
  animation: wisp-animation-2 28s infinite ease-in-out;
  left: 60%;
  top: 60%;
}

main {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 2rem;
}

.ritual-container {
  background-color: rgba(24, 24, 24, 1);
  border-radius: 1rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.8);
  max-width: 600px;
  padding: 2rem;
  text-align: center;
  z-index: 100;
}

h1 {
  color: rgba(153, 0, 0, 1);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

p {
  color: rgba(255, 255, 255, 0.87);
  margin: 1rem;
}

label {
  color: rgba(200, 200, 200, 1);
  display: block;
  margin-bottom: 0.5rem;
}

select,
button {
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  height: 3rem;
  margin: 0 0.25rem;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease;
}

select {
  background-color: rgba(50, 50, 50, 1);
  border: 1px solid rgba(200, 200, 200, 1);
  color: rgba(255, 255, 255, 0.87);
  margin-bottom: 1rem;
}

button {
  background-color: rgba(153, 0, 0, 1);
  color: rgba(255, 255, 255, 0.87);
}

button:hover {
  background-color: rgba(102, 0, 0, 1);
}

.ritual-response {
  margin-top: 1rem;
}

#response-text {
  color: rgba(255, 100, 100, 1);
  font-size: 1.25rem;
}

footer {
  background-color: rgba(15, 15, 15, 1);
  padding: 1rem;
  text-align: center;
  z-index: 60;
}

footer p {
  margin: 0;
}

footer a {
  color: rgba(255, 255, 255, 0.87);
  font-weight: 700;
  text-decoration: none;
}
