body {
  background-color: beige;
}

a {
  color: blue;
}

.container {
  margin: 120px auto;
  max-width: 600px;
}

header {
  font-family: "Courier New", Courier, monospace;
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: black;
}

.form-container {
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  margin-bottom: 30px;
}

form {
  display: flex;
}

.hint {
  line-height: 1.5;
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}

.instructions {
  padding: 20px;
  border: 1px solid gray;
  width: 80%;
  font-size: 16px;
  border-radius: 50px;
  line-height: 15px;
}

.button {
  margin-left: 10px;
  background-color: blue;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 50px;
  width: 150px;
  padding: 14px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button:hover {
  background-color: darkblue;
  transform: scale(1.05);
}

.button:active {
  transform: scale(0.98);
}

.quote {
  font-size: 15px;
  background-color: white;
  padding: 20px;
  line-height: 24px;
  border-left: 3px solid blue;
  border-radius: 10px;
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  color: black;
  font-size: 13px;
  margin-top: 30px;
}

.blink {
  animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
