body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.container{
    background-color: black;
    height: 100vh;
}
.wrapper{
    width:90vw;
    align-self: center;
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    background-color: white;
    margin: auto;
    position: relative;
    top: 2vh;
    border-radius: 2%;
}
.section{
    display: flex;
    justify-content: space-around;
}
.display input{
    width: 90vw;
    margin: 0px;
    height: 20vh;
    background-color: rgba(0,0,0,0.8);
    color: white;
    border: none;
    font-size: 60px;
    text-align: right;
    padding: 0px 20px;
}
input[type="button"]{
    background-color: rgb(173, 173, 173);
    color: black;
    text-align: center;
    align-self: center;
    font-size: 25px;
    font-weight: bold;
    width: 22.5vw;
    height: 15vh;
    border: 1px solid black;
    transition: 0.8s ease-in-out;
}
input[type="button"]:hover{
    background-color: blue;
}
input.equals{
    background-color: green;
    border-radius: 0 0 8% 0;
}
input.reset{
    background-color: red;
}
input.top{
    background-color: orange;
}
.five{
    justify-content: left;
}
.bracket{
    border-radius: 0 0 0 8%;
}
input.delete{
    background-color: yellow;
}