
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: dodgerblue;
    border-radius: 10px;
}

#calcTemp {
    padding: 29px 67px;
    min-height: 290px;
    background-color: yellow;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

label {
    font-size: 30px;
    line-height: 78px;
}
.temp{
    color: royalblue;
}
#temp {
    width: 220px;
    height: 34px;
    border-radius: 5px;
    margin: 12px;
    padding: 8px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
}

#temp_diff {
    width: 120px;
    height: 34px;
    border-radius: 5px;
    margin: 12px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
}

#submit {
    width: 100px;
    border:1px solid royalblue;
    border-radius: 5px;
    margin: 30px 0 20px 0;
    font-size: 18px;
    background-color: royalblue;
    color: lime;
    padding: 5px;
    transition: all 0.5s ease;
}

#submit:hover{
    background-color: green;
    color: lime;
    border:1px solid lime;
    cursor: pointer;
}

#result{
    font-size:28px;
    color: crimson;
}