
*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;


}

section{
    background-color: #010a43;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;

}



.container{
    background-color: #ffffff10;
    max-width: 400px;
    margin: 10vh auto 0 auto;
    box-shadow: -5px 10px 75px 1px #0000008c;
    border-radius: 10px;

}

#display{
    text-align: right;
    height: 120px;
    line-height: 70px;
    padding: 16px 8px;
    font-size: 2.5rem;
    color: orange;
}

.buttons{
    display: grid;
    border-bottom: 1px solid #999;
    border-left: 1px solid #999;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 400px;
    height: 445px;
    justify-items: center;
    border: none;

}


.buttons > div{
    border-top: 1px solid #999;
    border-right: 1px solid #999;

}

.button{
    color:orange;
    width: 60px;
    height: 60px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.7rem;
    cursor: pointer;
    background-color: #010a43;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    box-shadow: -5px 0px 3px 1px #0000008c;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    -ms-border-radius: 20%;
    -o-border-radius: 20%;
   
}

#equal{
    background-color: rgb(67 67 163 / 87%);
    color: aliceblue;
}

.button:hover{
   
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    color: white;
}


@media (min-width: 280px) and (max-width: 1024px){
.container {
    width: 100%;
    height: 100%;
}
section{
    min-height: 145vh;
    width: 145%;
}
}

#js:hover{

    background-color: yellow;

}