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

h1 {
    color: deepskyblue;
}

label{
    font-weight: bold;
    font-size: 1.25em;
}

button{
    cursor: pointer;
    font-size: 1.25em;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: deepskyblue;
    color: white;
    border-style: none;
    border-radius: 5px;
    transition: all 10ms;
}

button:hover{
    background-color: hsl(199, 100%, 50%);
    transform: scale(1.05);
}

form {
    background-color: white;
    text-align: center;
    max-width: 400px;
    margin: auto;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 5px 5px  hsl(0, 0%, 77%);
    
}

#textBox{
    font-size: 1.5em;
    text-align: center;
    width: 50%;
    border-style: solid;
    border-width: 3px;
    border-color: black;
    border-radius: 5px;
    margin-bottom: 10px;
}

#result{
    font-weight: bold;
    font-size: 1.25em;
}