body{

height: 100vh;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
align-items: center;
background: linear-gradient(rgba(113, 192, 159, 1), rgba(39, 67, 75, 1));

}


.display{

    background-color: transparent;
    display:flex;
    align-items:end;
    justify-content: flex-end;
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    padding: 25px;
    color: aliceblue;
    height: 60px;
    width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    
    

  
    

    /*text overflor//wideespace*/



}

.calculator{
    
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 300px;
}

.buttons{

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0px;
}

.button {

    width: 90px;
    height: 90px;
    border: 0;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;

}

.button.white {
    background-color: transparent;
    color:rgba(255, 255, 255, 1);
    width: 16;
    height: 40;
    opacity: 1;
    font-family: RobotoCondensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    border-radius: 0;
    


}

.button.yellow {

    background-color: transparent;
    color: white;
    width: 16;
    height: 40;
    opacity: 1;
    font-family: RobotoCondensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    border-radius: 0;
    border-left: 0.5px solid rgba(112, 190, 157, 1);   


}


.button.white.igual {

    background: rgba(112, 190, 157, 1);

    color:rgba(255, 255, 255, 1);
    height: 80; 
    opacity: 1;
    font-family: RobotoCondensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%; 
    border-radius: 0;
}

.button.white.topo {

    border-top: 0.5px solid rgba(112, 190, 157, 1);
}


.button.yellow.topo {

    border-top: 0.5px solid rgba(112, 190, 157, 1);
}

