body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    flex-direction: column;
}

.calculator-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.calculator {
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
    background-color: #fff;
    width: 400px;
    margin: 20px;
    text-align: center;
}
p{
    font-size: 20px;
    text-align: center;
    margin: 20px auto:
.calculator h2 {
    margin-bottom: 20px;
}

.calculator-screen {
    width: 100%;
    height: 80px;
    border: none;
    background-color: #252525;
    color: white;
    text-align: right;
    font-size: 2.5rem;
    padding: 0 20px;
    box-sizing: border-box;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.calculator-keys {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

button {
    height: 60px;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    background-color: #e0e0e0;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d5d5d5;
}

button.operator {
    background-color: #ff9500;
    color: white;
}

button.operator:hover {
    background-color: #e58900;
}

button.equal-sign {
    background-color: #28a745;
    color: white;
    grid-column: span 2;
}

button.equal-sign:hover {
    background-color: #218838;
}

button.all-clear {
    background-color: #dc3545;
    color: white;
}

button.all-clear:hover {
    background-color: #c82333;
}

.ti-84-calculator iframe {
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
