* {
    font-family: 'Inconsolata', monospace;
    color: #555;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 320px;
    background-color: white;
    -webkit-box-shadow: 0px 10px 40px -16px rgba(0, 64, 128, 0.2);
    box-shadow: 0px 10px 40px -16px rgba(0, 64, 128, 0.2);
}

table {
    max-width: 320px;
    min-width: 220px;
    border-color: #ffffff;
}

td {
    max-width: 320px;
}

button {
    width: 100%;
    height: 70px;
    font-size: 24px;
    background-color: white;
    border: 0;
}

#inputLabel {
    background-color: #ececec;
}

input[type=text] {
    padding: 10px;
    background-color: #ececec;
    width: 100%;
    font-size: 30px;
    border: none;
    padding: 20px;
}

input[type=text]::-webkit-inner-spin-button,
input[type=text]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
