body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222;
    font-family: Arial, sans-serif;
}

.calculator {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

#display {
    width: 100%;
    height: 50px;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: right;
    padding-right: 10px;
    border: none;
    border-radius: 5px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

button {
    height: 50px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #555;
    color: white;
}

button:hover {
    background: #777;
}

.equals {
    grid-row: span 2;
    background: orange;
}

.zero {
    grid-column: span 2;
}
