@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

body {
  background: #b3c99c;
  font-family: "Poppins", sans-serif;
}

.container {
  text-align: center;
  background-color: #ced9bf;
  width: 400px;
  margin: 100px auto;
  padding: 10px;
  border-radius: 10px;
}

#getUser {
  box-shadow: inset 0px 0px 14px -3px #f2fadc;
  background: linear-gradient(to bottom, #dbe6c4 5%, #9ba892 100%);
  background-color: #dbe6c4;
  border-radius: 6px;
  border: 1px solid #b2b8ad;
  display: inline-block;
  cursor: pointer;
  color: #757d6f;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ced9bf;
}
#getUser:hover {
  background: linear-gradient(to bottom, #9ba892 5%, #dbe6c4 100%);
  background-color: #9ba892;
}
#getUser:active {
  position: relative;
  top: 1px;
}
