body {
    font-family: Helvetica;
    background-color: hsl(0, 0%, 95%);
}

h1 {
    color: hsl(240, 37%, 60%);
}

div {
    background-color: white;
    text-align: center;
    max-width: 400px;
    margin: auto;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 5px 5px 10px gray;
}

#myInput {
    width: 50%;
    text-align: center;
    font-size: 2em;
    border: 2px solid black;
    border-radius: 8px;
    margin-bottom: 12px;
}

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

button {
    margin-top: 12px;
    background-color: hsl(240, 37%, 60%);
    color: white;
    border-radius: 5px;
    padding: 10px 12px;
    font-size: 1.5em;
}
button:hover {
    background-color: hsl(240, 25%, 25%);
    cursor: pointer;
}

#conversionResult {
    font-size: 1.75em;
    font-weight: bold;
}