body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #4d4d4d; 
  background-image: url('/css/images/background-texture.png'); 
  background-repeat: repeat; 
  background-size: auto; 
  animation: fadeBackground 6s infinite alternate;
  transition: background-color 1s ease-in-out;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000; 
  text-align: center;
}

@keyframes fadeBackground {
  0% {
    background-color: #4d4d4d; 
  }
  50% {
    background-color: #1B1B1B; 
  }
  100% {
    background-color: #4d4d4d; 
  }
}

#clickIt {
  font-family: 'Bookman Old Style', serif;
  font-weight: bold;
  font-size: 3em;
  color: #E7E7E7;
  text-shadow: 
    3px 3px 0 rgba(0, 0, 0, 0.4), 
    -3px -3px 0 rgba(0, 0, 0, 0.4);
  display: inline-block; 
  margin: 0px;
  padding: 18px;
  min-width: 500px; 
}

#theQuestion {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 2em; 
  color: #FF0000; 
  text-shadow: 
    3px 3px 0 rgba(0, 0, 0, 0.4), 
    -3px -3px 0 rgba(0, 0, 0, 0.4); 
  min-width: 500px; 
  min-height: 60px; 
  display: inline-block;
  padding: 0px; 
  margin: 0px;
}

#submitTextForm {
  display: flex;
  gap: 10px; 
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

#randomText {
  padding: 12px 16px;
  font-size: 1.2em;
  width: 300px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1); 
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#randomText:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

#submitTextForm button {
  padding: 12px 24px;
  font-size: 1.1em;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

#submitTextForm button:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#submitTextForm button:active {
  transform: scale(0.98);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.15);
}