body{
  background-color: rgb(208, 201, 201);
  
}
h1{
  color: blue;
}
form{
  background-color: white;
  text-align: center;
  max-width: 350px;
  margin: auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.675);

}
#textBox{
  width: 50%;
  text-align: center;
  font-size: 2em;
  border: 2px solid rgb(104, 103, 103);
  border-radius: 4px;
  margin-bottom: 15px;
}
label{
  font-size: 1.5em;
  font-weight: bold;

}
button{
  margin-top: 15px;
  background-color: rgba(0, 60, 255, 0.985);
  font-size: 1.5em;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  color: white;
}
button:hover{
  cursor: pointer;
   background-color: rgba(25, 0, 255, 0.929);
}
#result{
  font-size: 1.3em;
  font-weight: bold;
}