body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Add this rule for h1 styling */
h1 {
  color: #dddddd; /* Light gray color */
}

a {
  color: #add8e6; /* Pale blue color */
  text-decoration: none;
}

a:hover {
  color: #87ceeb; /* Slightly brighter blue on hover */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow-y: auto;
  padding: 50px 0;
  box-sizing: border-box;
}

.slide.active {
  opacity: 1;
}

.content {
  text-align: center;
  width: 50%;
  margin: 0 auto;
  z-index: 1;
}

#audioTextContainer {
  cursor: pointer;
}

#audioTextContainer:hover #audioIcon {
  color: #ff0;
}

#audioIcon {
  margin-left: 10px;
  transition: color 0.3s ease;
  font-size: 2em; /* Adjust this value to make the icon bigger */
}

#audioIcon:hover {
  color: #ff0;
}

.next-btn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  padding: 10px 20px;
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  animation: pulse 2s infinite;
}

.next-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    border-color: #ffffff;
  }
  100% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.2);
  }
}

input, textarea {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #ffffff;
  color: #ffffff;
  z-index: 1;
  box-sizing: border-box;
}

#slide1 .content {
  width: 70%;
  max-width: 800px;
}

#audioText {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

#slide1 h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
}

#slide1 p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

#slide2 textarea {
  font-size: 1.2em; /* Adjust the value as needed */
}

#slide3 h2, #slide3 input {
  font-size: 1.2em;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  text-align: center;
  z-index: 11;
}

#acceptCookies {
  padding: 5px 10px;
  background: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#acceptCookies:hover {
  background-color: #ffffff;
  color: #000000;
}

.title {
  color: #ffffff;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 1em;
}

.subtitle {
  font-size: 0.7em;
  margin-bottom: 1em;
  font-weight: normal;
}
