body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: hsl(0, 0%, 89%);
}

/* .container {
  justify-content: center;
  align-items: center;
} */

h1 {
  color: hsl(199, 76%, 52%);
}

form {
  background-color: hsl(0, 0%, 90%);
  text-align: center;
  max-width: 350px;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px hsla(0, 0%, 0%, 0.5);
}

#textBox {
  width: 50%;
  text-align: center;
  font-size: 1.3rem;
  border: 2px solid hsl(0, 2%, 10%);
  border-radius: 5px;
  margin-bottom: 15px;
}

label {
  font-size: 1.2rem;
  font-weight: bold;
}

#button1 {
  margin-top: 10px;
  width: 50%;
  height: 25px;
  background-color: rgb(44, 212, 111);
  border: none;
  color: white;
  cursor: pointer;
}

#button1:hover {
  background-color: rgb(35, 192, 97);
}

#button2 {
  margin-top: 10px;
  width: 50%;
  height: 25px;
  background-color: rgb(227, 35, 67);
  border: none;
  color: white;
  cursor: pointer;
}

#button2:hover {
  background-color: rgb(189, 29, 56);
}

#result {
  font-size: 1.2rem;
  font-weight: bold;
}
