@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Google Sans", sans-serif;
  background:url(./mt-kenya.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;

  
}
.container {
  background:rgba(0, 0, 0, 0.452);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.217);
  width: 600px;
  margin-top: 3rem;
  
}
h1 {
  margin: 1rem 0;
  color: rgb(255, 255, 255);
  text-align: center;
}
.response {
  color: rgba(233, 230, 230, 0.747);
  font-size: 1rem;
  display: none;
  min-height: 50px;
  font-family: "Google Sans", sans-serif;
  border-left: 2px solid #034d07;
  padding: 1rem;
  border-radius: 5px;
  font-style: italic;
}
.response.show {
  display: block;
  
}
button {
  background-color: #05670a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 0.8rem;
  margin: 1.5rem auto 0.8rem auto;
  transition: all 200ms ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  font-family: "Google Sans", sans-serif;
  display: block;
}

button:hover {
  background: linear-gradient(90deg, #05670a, #131b14);
  cursor: pointer;
}
button:active {
  background: linear-gradient(90deg, #0d120e, #034d07);
}
footer {
  text-align: center;
  font-size: 0.6rem;
  color: rgb(146, 146, 146);
  font-family: "Google Sans", sans-serif;
  padding-top: 1rem;
  border-top: 1px solid #7b7b7b;
  width: 100%;
}
footer a {
  color: #90ee90;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.blink {
  animation: blinker 1s step-start infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0.5rem;
  }
}
