body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-color: rgb(212, 233, 250);
}
#wrapper{
    height: fit-content;
    width: 400px;
    background: white;
    border: 2px solid black;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;

}

.buttons{
    height: 60%;
    width: 360px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto 4% auto;
    position: relative;
    transition-duration: .6s;
}
.num, .sym, .equ, .ac{
    height: 80px;
    width: 80px;
    margin: 5px;
    border-radius: 50%;
    font-size: 35px;
    color: black;
    padding: 1px;
}
button:hover{
    position: relative;
    bottom: 1px;
    right: 1px;
    box-shadow: 2px 2px 10px 1px grey;
}
button:active{
    position: relative;
    top: 1px;
    left: 1px;
    box-shadow: 2px 2px 10px 1px grey inset;
}
.ac{
    width: 260px;
    height: 80px;
    border-radius: 40px;
    background: rgb(251, 116, 116);

}
.sym, .equ{
    background-color: #f58962;
}
.equ{
    width: 170px;
    border-radius: 40px;
}
.num{
    background-color: rgb(230, 228, 228);
}
#output{
    border: 2px solid black;
    border-radius: 15px;
    width: 90%;
    height: 70px;
    margin: 5% auto;
    background: antiquewhite;
    font-size: 55px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
    transition-duration: .5s;
    display: flex;
    justify-content:flex-end;
    align-items: center;
}
