body{
    background-color: rgba(238, 146, 7, 0.493);
    background-image: url('bg.jpg');
    background-size: cover; /* Ensures the background image covers the entire container */
    background-position: center; /* Center the background image */
}

h1{
    text-align: center;
    color: #0f0202;
}

.calculator {
    max-width: 300px;
    margin: 0 auto;
    padding: 30px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-image: url('bg3.jpeg');
    background-size: cover; /* Ensures the background image covers the entire container */
    background-position: center; /* Center the background image */
}

.display {
    width: 93%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 20px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #fff; /* Default button color */
    border: 1px solid #ccc; /* Button border */
}

button:hover {
    background-color: #b3c9655d; /* Change color on hover */
}
