*, ::before, ::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  padding: 50px 20px;
  font-family: Georgia, sans-serif;
  font-size: 20px;
  background-color: #03021F;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.input {
  
  border: 0 none;
  height: 100%;
  padding: 25px;
  margin: 10px 20px;

}


.heading {
  text-align: center;
  margin: 20px auto;
  max-width: 350px;
  font-family: Georgia, sans-serif;
}

.input-form {
  color: white;
  margin: auto 25px;
  padding: 15px auto;
  border: 3px solid white;
  text-align: center;
  width: 90%;
  max-width: 500px;
  background-color: #494953;
  border-radius: 20px;
}

label {
  display: inline-block;
  font-size: 23px;
  margin-bottom: 10px;
  font-weight: bold;
  padding-top: 10px;
}

input:focus-visible,
button:focus-visible {
  outline: 3px solid white;
}

input {
  display: block;
  font-size: 2.5rem;
  width: 90%;
  height: 60px;
  padding: 6px 12px;
  margin: 10px auto;
  line-height: 1.4;
  color: white;
  background-color: #03021F;
  border: 1px solid white;
}

button {
  cursor: pointer;
  margin-top: 15px;
  text-decoration: none;
  background-image: linear-gradient(#fecc4c, #ffac33);
  border: 3px solid #feac32;
  padding: 10px 16px;
  font-size: 23px;
  width: 90%;
  border-radius: 20px;
  margin-bottom: 10px;
}

.output {
  color: white;
  background-color: #494953;
  border: 3px solid white;
  font-size: 2.5rem;
  width: 90%;
  max-width: 500px;
  min-height: 75px;
  margin-top: 25px;
  padding: 15px;
  overflow-wrap: break-word;
  text-align: center;
  border-radius: 20px;
}

.hidden {
  display: none;
}
