body {
  background: linear-gradient(
    179.1deg,
    rgb(43, 170, 96) 2.3%,
    rgb(129, 204, 104) 98.3%
  );
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.container {
  margin: 50px auto;
  max-width: 550px;
}

h1 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 50px;
  font-family: "Permanent Marker", serif;
  color: white;
}

form {
  display: flex;
  justify-content: space-around;
  background-color: whitesmoke;
  padding: 30px 10px;
  margin: 15px auto;
  border-radius: 5px;
  box-shadow: -5px -5px 15px 10px whitesmoke;
}

.request {
  padding: 15px 10px;
  width: 72%;
  border: 2.5px solid #434343;
  border-radius: 20px;
  font-size: 16px;
}

.submit {
  padding: 15px;
  border: none;
  border-radius: 20px;
  background-color: #434343;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: grab;
}

.answer {
  background: linear-gradient(to right, #434343 0%, black 100%);
  line-height: 25px;
  padding: 20px 10px 20px 40px;
  margin: 35px auto;
  border-radius: 5px;
  border: 10px groove white;
  box-shadow: -10px -8px 20px 5px #434343;
  font-family: "Mansalva", serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.blink-me {
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  font-size: 12px;
}

a {
  color: #217f48;
  font-weight: 600;
}
