body{
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100vh;
   margin: 0;
    background-color: rgb(32, 1, 1);
}
.container{
    
    background-color: rgb(225, 225, 225, 0.15);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.text{
    display: flex;
    align-items: center;
    height: 20px;
    margin-top: 20px;
    text-decoration: double;
    color: white;
    font-family:  sans-serif;
}
.calculator{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.display input{
    width: 289px;
    height: 60px;
    font-size: 30px;
    text-align: right;
    border: none;
    padding: 10px;
    background-color: #f5deb3;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
    color: #4b2e2a;
}
input[ type= "button"]{
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin: 8px;
    background-color: rgb(225, 225, 225, 0.6);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}
@media(max-width: 600px){
    input[type="button"]{
        height: 40px;
        width: 40px;
    }
    .display input{
        width: 206px;
        height: 30px;
        margin-bottom: 10px;

    }
    body{
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100vh;
   margin: 0;
    background-color: rgb(32, 1, 1);}

    h1{
        font-size: large;
    }

}
input[ type= "button"]:hover{
    transform: scale(1.05);
    background-color: #e6c07b;
    text-align: center;
    


}
input[value="AC"], input[value="DE"],input[value="="]{

    color: white;
    font: bold;
     background-color: #8b4513;
   
}

.operator{
    color: white;
     background-color: #a0522d;
     
}


    
    
