@import url('https://fonts.googleapis.com/css2?family=Baloo+2&display=swap');

* {
    font-family: 'Baloo 2', cursive;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: rgb(21, 32, 92);
}

.container {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.display {
    width: 300px;
    height: 150px;
    color: white;
    display: flex;
}

.outcome {
    width: 100%;
    font-size: 40px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    border: none;
    background: none;
    resize: none;
    color: white;
    text-align: end;
}

.calculator {
    width: 300px;
    height: 500px;
    background-color: rgb(12, 12, 41);
    text-align: center;
    border-radius: 20px;
}

table {
    width: 100%;
    height: 350px;
    border-spacing: 0;
}

td {
    width: 75px;
    height: 65px;
    background-color: rgb(15, 17, 54);
    color: white;
    font-size: 25px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

td:hover {
    background-color: rgb(23, 25, 78)
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}