body {
  color: #ffffff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  animation: backgroundBlinkAnimation 1s ease infinite;
}

@keyframes backgroundBlinkAnimation {
  0%, 50% { background-color: black; }
  51%, 100% { background-color: blue; }
}
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Rest of the CSS styles remain the same */

h1 {
  text-align: center;
  font-size: 36px;
}
h2 {
  text-align: center;
  font-size: 30px;
}
form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  font-size: 18px;
  margin-bottom: 10px;
}

input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  outline: none;
}

/* Rest of the CSS styles remain the same */

button {
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  animation: colorBlinkAnimation 1s ease infinite;
}

@keyframes colorBlinkAnimation {
  0%, 50% { background-color: #ff4081; }
  51%, 100% { background-color: #d50063; }
}
.never-result {
  font-size: 148px;
  font-weight: bold;
}
#result {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

button:hover {
  background-color: #d50063;
}
/* Rest of the CSS styles remain the same */

.reviews {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.review {
  width: 33%;
  padding: 20px;
  background-color: red;
  border-radius: 5px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.author {
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

#result {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

.footer {
  font-size: 24px;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}