.screen-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 50px;
}


.calculator-container {
    width: 25%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.display {
    height: 40px;
    border: solid;
    border-bottom: none;
    padding: 10px;
    background-color: beige;
    font-size: large;
}

.button-container {
    border: solid;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    background-color: beige;
}

button {
    width: 30%;
    height: 40px;
    background-color: burlywood;
    font-size: large;
}