* {
    /* border: solid 2px red; */
}

body{
    font-family: Helvetica, sans-serif;
    font-size: 1.2em;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 1.5em;
    background-color: hsl(0, 82%, 83%);
    text-align: center;
    
    color: hsl(0, 39%, 37%);
    font-weight: 700;
}

h1 {
    /* color: hsl(236, 58%, 26%); */
    color: white;
    background-color: hsl(0, 77%, 71%);
    border-radius: 20px;
    box-sizing: content-box;
    padding: 20px 30px;
}

form {
    width: 20em;
    background-color: hsl(0, 0%, 100%);
    padding: 1.8em;
    border-radius: 50px;
    box-shadow: 10px 10px 5px hsla(0, 0%, 50%, 0.26);
}

#textBox {
    text-align: center;
    width: 50%;
    font-size: 1.5em;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: solid hsl(0, 77%, 71%);
    
    color: hsl(0, 39%, 37%);
    font-weight: 500;
}

#result {
    font-size: 1.8em;
}

#submitBtn {
    font-size: 1.5em;
    background-color: hsl(0, 77%, 71%);
    color: white;
    border-radius: 20px;
    border-style: none;
    padding: 10px 30px;
    cursor: hover;
    transition: background-color 0.25s;
    margin-top: 20px;
}

#submitBtn:hover {
    background-color: hsl(0, 65%, 64%);
}