@charset "UTF-8";

body{
    background-color: rgb(94, 97, 99);
}
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}


div{
    display: inline-block ;
}
section{
    padding: 30px;
    margin: 30px auto;
    width: 60vw;
    height: 50vh;
    background-color: bisque;
    justify-items: center;
    text-align: center;

}

input{
    width: 60px;
    padding: 5px;
}

input.numbers{
    width: 37px;
}

input#calc{
    margin-top: 10px;
    width: 200px;
    flex: auto;
    display: block;
}

#res{
    background-color: white;
    width: 40vw;
    height: 30vh;
    margin-top: 30px;
    margin-bottom: 20px;
}