body{
    padding: 0;
    margin: 0;
}
h1{
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    color:blue;
}
.container{
    height: 100vh;
    width: 100%;
    background-color:aquamarine;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.container div{
    width: 40%;
    height: 50vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: blue;
}
.container div input{
    width: 80%;
    height: 8vh;
    text-align: center;
    font-size: 30px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: bold;
}
.container div input:focus{
    outline: none;
}
#formula{
    position: absolute;
    top: 65%;
    color: white;
    font-size: large;
}
#clear{
    position: absolute;
    top: 65%;
    right: 10%;
    height: 40px;
    width: 100px;
    border-radius: 10px;
    background-color: rgb(246, 82, 180);
    color: white;
    border: 0;
    transition: all 1s ease-in-out;
    cursor: pointer;
}
#clear:hover{
    background-color: rgb(197, 7, 121);
}
