body
{
    overflow: hidden;
    margin: 0;
}

h1
{
    margin-right: 5px;
}

.calculator
{
    width: 100%;
    height: fit-content;
}

.buttons-container
{
    width: 100%;
    background-color: #a98a8a;
    border-radius: 5%;
}

#display
{
    height: 16vh;
    min-height: 20px;
    max-height: 50px;
    margin: 2px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: lightsteelblue;
    border: solid 1px black;
    border-radius: 10px;
}

#display h1
{
    font-size: 22pt;
    font-size: 12vw;
}

.button-row
{
    display: flex;
}

.button
{
    color: white;
    font-size: 16pt;
    font-size: 6vw;
    aspect-ratio: 1 / 1;
    flex: 1;
    border: solid 1px rgb(158, 84, 84);
    border-radius: 20%;
    background-color: lightcoral;
    cursor: pointer;
}

.button:active
{
    background-color: rgb(158, 84, 84);  
}

