body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.calculator {
    width: 450px;
    height: 750px;
    border: 1px solid black;
}

.display {
    font-size: 50px;
    padding: 35px;
    text-align: end;
    height: 58px;
}

.calc-container {
    display: flex;
    flex-wrap: wrap;
}

.row {
    padding: 35px;
    display: flex;
    gap: 20px;
    flex: 1;
}

.calcButton {
    width: 80px;
    height: 40px;
    text-align: center;
    font-size: 20px;
}

.top-row {
    display: flex;
    margin-left: auto;
    gap: 20px;
}