.buttons{
    margin: auto;
    width: max-content;
    height: max-content;
}
td{
    width: fit-content;
    height: fit-content; 
    padding: 0;
}
.calculator{
    table-layout: fixed;
    width: 70%;
    height: 70%;
    border: 1px solid #CECCCC;
    border-radius: 10px;
    background-color: #CECCCC;
}
.button{
    width: 100%;
    height: 100%;
    border-radius: 80px;
    border: 1px solid #CDA8B8;
    font-size: 5vh;
    font-weight: 800;
    color: #FDECEF;
    background-color: #CDA8B8;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s, color 0.2s;
}
.button-hover:hover{
    background-color: #FDECEF;
    color: #CDA8B8;
    border: 1px solid #CDA8B8;
}
.button:active{
    background-color: #CDA8B8;
    color: #FDECEF;
}

input[type="text"]{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #FDECEF;
    margin-right: 10px;
    box-sizing: border-box;
    background-color: #FDECEF;
    font-size: 5vh;
    color: #9D6381;
}
main{
    height: 100vh;
    display: flex;
    justify-content: center;
}

header{
    text-align: center;
    color: #9D6381;
    margin-top: 10px;
    margin-bottom: 10px;
    height:10vh
}
