body {
    font-family: Arial, sans-serif;
    background-color: rgb(92, 57, 1);
    color:rgb(246, 164, 64);
}

h1 {
    color: rgb(247, 136, 0);
}

form {
    background-color: rgb(51, 40, 0);
    text-align: center;
    max-width: 350px;
    padding: 25px;
    margin: auto; /*automatically centers the form element (and its contents)*/
    border-radius: 20px;
    box-shadow: 5px 5px 15px hsla(35, 95%, 62%, 0.5);
}

#textBox {
    width: 120px;
    text-align: center;
    font-size: 2em;
    border: 2.5px solid rgb(0, 0, 0);
    border-radius: 10px;
    background-color: rgb(246, 169, 75);
    margin-bottom: 15px;
    box-shadow: 2px 2px 10px;
}

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

button {
    margin-top: 15px;
    background-color: rgb(246, 169, 75);
    font-size: 1.5em; font-weight: bold;
    border: solid; border-radius: 10px; box-shadow: 2px 2px 10px;
    padding: 10px 15px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(252, 141, 6);
    transform: translateY(-2px);
}

button:active {
    background-color: rgb(126, 70, 2);
}

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

input[name="unit"]:hover {
    cursor: pointer;
}