*{
    font-family: 'Fraunces', serif;
    color: #f2f0f0;
}
body {
    margin: 0;
    background-color: rgb(22, 22, 22);
}
h1 {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
    font-size: 5vw;
    
    
}
.conteiner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}
.calculadora {
    display: grid;
    grid-template-columns: repeat(4, 75px);
    grid-template-rows: 160px repeat(5, 75px);
    background-color: #023c60d6;
    padding: 15px;
    border-radius: 32px;
    box-shadow: 15px 15px 10px -3px #262627d6, -5px -5px 15px 3px rgb(45, 44, 44) ;
}

button {
    cursor: pointer;
    margin: 5px;
    padding: 0;
    border-radius: 32px;
    border: none;
    background-color: #03304cd6;
    box-shadow: 5px 5px 10px -3px #010b11d6, -5px -5px 15px 3px transparent ;
}
 button:active {
    background-color: transparent;
}

button:focus{
    outline: none;
}
.col_2 {
    grid-column: span 2;
}
.display{
    grid-column: 1/ -1;
    padding: 16px;
    display: flex;
    margin: 20px 15px 40px;
    flex-direction: column;
    align-items: flex-end;
    background-color: #262627d6;
    border-radius: 22px;
    text-align: right;
    justify-content: space-between;
    word-break: break-all;
    box-shadow: 0px 0px 0px 10px #00000033;
}
#valor-actual {
    font-size: 1.5em;
}
#valor-anterior {
    font-size: 2em;
}
@media all and (max-width: 760px) {
     h1{
        font-size: 42px;
     }
    
}
