* {
    margin: 0;
    padding: 0;
}

body {
    background-color: blanchedalmond;
}

.calculatorBody {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 500px;

}

table {
    border-collapse: collapse;
    background-color: aqua;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    border: 2px solid;
}

td {
    text-align: center;
    color: blue;

}

input[type="button"] {
    width: 90px;
    height: 90px;
    color: azure;
    background-color: black;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    outline: none;
    border: none;
}

input[type="button"]:hover {
    background-color: rgb(239, 5, 149);
    outline: none;
}

input[type="text"] {
    width: 340px;
    height: 80px;
    text-align: right;
    margin: 10px;
    padding: 2px;
    outline: none;
    font-size: 30px;
}