@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Dancing Script', cursive;

}

body{
    background-color: #f8e7af;
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vh;
    /* border: 1px solid black; */
}

form{
    background-color: #fab1a0;
    margin: 100px auto;
    /* border: 1px solid black; */
    text-align: canter;
    padding: 80px;
    box-shadow: 0 10px 6px -6px #777;
    display: flex;
    flex-direction: column;
    align-items: center;
}
label{
    font-size: 30px;
    font-weight: 700;
}

#temp{
    border: none;
    padding: 10px;
    height: 40px;
    width: 100px;
    font-size: 20px;
    margin-top: 20px;
    outline: none;
}

#temp_diff{
    height: 41px;
    border: none;
    margin-top:20px;
    font-size: 15px;
    vertical-align: top;
    outline: none;
    font-weight: 500;
    font-family: sans-serif;
}

[type = "submit"]{
    height: 43px;
    margin: 20px;
    width: 100px;
    font-size: 15px;
    border: none;
    background-color: black;
    color: white;
    font-family: sans-serif;
    cursor: pointer;
}

#resultContainer{
    font-size: 35px;
}