* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(rgb(68, 76, 247) 0.5px, rgb(229, 229, 247) 0.5px);
}
body div {
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-direction: column;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.4px);
  -webkit-backdrop-filter: blur(6.4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body div h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin-bottom: 1rem;
  color: white;
  font-size: 2.5rem;
  text-shadow: 1px -1px 3px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: rgba(145, 142, 142, 0.6588235294);
  border-bottom: 5px double rgba(145, 142, 142, 0.6588235294);
}
body div #userInput {
  width: 75%;
  outline: none;
  font-size: 1.2rem;
  padding: 0.8rem 0.5rem;
  border-radius: 16px;
  background: rgba(255, 247, 247, 0);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.1px);
  -webkit-backdrop-filter: blur(3.1px);
  transition: all ease 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.23);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}
body div #userInput:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
body div #userInput:active {
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(3.1px);
  -webkit-backdrop-filter: blur(3.1px);
}
body div .btn-grad {
  background-image: linear-gradient(to right, #093028 0%, #237a57 51%, #093028 100%);
}
body div .btn-grad {
  width: 100%;
  font-size: 1rem;
  margin-top: 11px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  display: block;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
}
body div .btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
body div .btn-grad:active {
  transform: translateY(5px) scale(0.98);
  -webkit-transform: translateY(5px) scale(0.98);
  -moz-transform: translateY(5px) scale(0.98);
  -ms-transform: translateY(5px) scale(0.98);
  -o-transform: translateY(5px) scale(0.98);
}
body div #output {
  margin-top: 10px;
  font-size: 1.4rem;
  padding: 7px 1rem;
  border: 2px solid transparent;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px 30%;
  -webkit-border-radius: 20px 30%;
  -moz-border-radius: 20px 30%;
  -ms-border-radius: 20px 30%;
  -o-border-radius: 20px 30%;
}/*# sourceMappingURL=style.css.map */