body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(0, 0%, 95%);
}

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.3);
}


#temperatureInput {

    font-weight: bold;
    width: 50%;
    text-align: center;
    font-size: 2em;
    border: 2px solid black;
    border-radius: 4px;
    margin-bottom: 15px;

}

label {
    font-size: 1.5em;
    color: black;
    font-weight: bold;
    
}

button {

margin-top: 15px;
background-color: rgb(255, 0, 0);
font-size: 1.5em;
padding: 10px 15px;
border-radius: 100px;
cursor: pointer;
font-weight: bold;

}

button:hover{

background-color: blue;

}

#result{

    font-size: 1.75em;
    font-weight: bold;

}