*{
    font-family:'Courier New', Courier, monospace;
    color:white;
}


body{
    margin:0;
    background-color:#97a3dd;
}

.container{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    

}

.calculadora{
    display:grid;
    grid-template-columns: repeat(4, 75px);
    grid-template-rows:160px repeat(5, 75px);
    background-color: #674b68;
    padding: 15px;
    border-radius:32px;
    box-shadow: 15px,10,0px,5px;
    
    
    
}



button{
    cursor: pointer;
    padding: 0px;
    margin:5px;
    border-radius:32px;
    font-size:1.5em;
    font-weight: bolder;
    border:none;
    background-color:#7c537c;
    box-shadow: 5px 5px 10px -3px #573b54;
}

button:active{background-color: #442d46;}
button:focus{outline: none;}

.display{
    grid-column:1/-1;
    font-size:2em;
    padding: 18px;
    display:flex;
    margin:10px,20px;
    flex-direction:column;
    align-items: flex-end;
    background-color:rgb(41, 41, 41);
    border-radius:32px;
    text-align: right;
    justify-content: space-between;
    word-break:break-all;
    margin-bottom: 10px;
    box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.198);
}

.col-2{
    grid-column: span 2;
}

#valorActural{
    font-size:1.5em;

}

#valorAnterior{
    font-size:2em ;
}