body {
  margin: 0;
  padding: 0;
  background: black url('/image/glitch.gif') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  overflow: hidden;
  position: relative;
}

glow-text {
  color: red;
  text-shadow: 0 0 10px red, 0 0 20px red;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2em;
  text-align: left; /* preserve indentation */
  max-width: 800px;
  margin: 0 auto;
  white-space: pre-wrap; /* preserve spaces, tabs, and line breaks */
  line-height: 1.5;
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#site-title {
  font-size: 5em;
  color: red;
  text-shadow: 0 0 15px red, 0 0 30px red;
  margin-bottom: 40px;
  text-align: center;
}

button, input[type="button"], input[type="submit"] {
  background-color: black;
  color: red;
  border: 2px solid red;
  border-radius: 15px;
  padding: 15px 30px;
  font-size: 1.1em;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 15px red;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  margin: 10px;
}

button:hover {
  background-color: red;
  color: black;
  box-shadow: 0 0 25px red, 0 0 40px red;
  transform: scale(1.05);
}

input[type="text"], input[type="file"], input[type="password"], select {
  width: 80%;
  max-width: 500px;
  padding: 12px;
  font-size: 1em;
  border: 2px solid red;
  border-radius: 10px;
  background-color: #111;
  color: red;
  box-shadow: 0 0 10px red;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}

#page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: black url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ79zBC47E3KR3CFmlYo1Ff3bJqhEMtDyWgEJ4T4m7N1x7my-mCD81QuH2dPyZw7oYRPns&usqp=CAU') center center no-repeat;
  background-size: 150px;
  z-index: 9999;
  display: none;
}

#randomText {
  position: relative;
  margin-top: 100px; /* pushes it below the fixed search bar */
  color: #444;
  font-size: 16px;
  text-align: center;
  transition: opacity 1s ease;
  opacity: 1;
  max-width: 80%;
  line-height: 1.4;
  z-index: 1;
}

.search-form {
  position: fixed;
  top: 45%; /* add this line */
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.search-form input[type="text"] {
  flex-grow: 1; /* input fills the available space */
  padding: 12px 15px;
  font-size: 1em;
  border: 2px solid red;
  border-radius: 10px;
  background-color: #111;
  color: red;
  box-shadow: 0 0 10px red;
  font-family: 'Orbitron', sans-serif;
}

.card {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid red;
  border-radius: 15px;
  padding: 25px;
  margin: 20px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 0 25px red;
  text-align: center;
}

.card h2 {
  color: red;
  text-shadow: 0 0 10px red, 0 0 20px red;
  margin-bottom: 15px;
}

.card p {
  color: #f88;
  margin-bottom: 20px;
  line-height: 1.4;
}

.lol-text {
  font-size: 2em;
  text-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
}
