body{
    background-color: #f2ecdd;
}

.wrapper{
    height: 100vh;
    width: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin:auto;
}

.header{
    color: #d89e0a;
    align-self:center;
    font-size: 4rem;
}

.container{
    display: grid;
    grid-template-columns:  1fr 1fr 1fr 1fr ;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 50%;
    height: 70%;
    text-align: center;
}

.button{
    background-color: #333533;
    border: 1px solid  #0b0b0b;
    color:  #f2ecdd;
    text-align: center;
    text-decoration: none;
    font-size: 25px;
    cursor: pointer;
}

.button:hover {background-color: #254545}

.button:active {
    background-color: #254545;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

#field{
    background-color: #0b0b0b;
    grid-column: span 4;
    border-radius: 2px;
    border: none;
    font-size: 25px;
    color:#ffffff;
}

#zero{
    grid-column: span 2;
}

#ac{
    color:  #ff7665 ;
}

#del{
    color:  #ff7665 ;
}

#percentage{
    color:  #f8c555 ;
}

#division{
    font-size: 36px;
    color:  
    #f8c555;
}

#multiply{
    font-size: 36px;
    color:  
    #f8c555 ;
}
#substract{
    font-size: 40px;
    color:  
    #f8c555 ;
}
#plus{
    font-size: 34px;
    color:  
    #f8c555 ;
}
#equal{
    font-size: 34px;
    color:  
    #f8c555 ;
}
