*{
    margin: 0;
    padding: 0;
}

.fundo{
    background-image: linear-gradient(45deg, black, crimson);
    height: 100vh;/*preenche toda a tela*/
    color: white; /*cor da fonte*/
    font-family: Arial, Helvetica, sans-serif; /*tipo de fonte*/
    text-align: center; /*Centraliza os textos na tela*/
}

.calculadora{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8); /*0.8 - transparência (0 à 1)*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /*Alinha perfeitamente no centro*/
    border-radius: 15px;
    padding: 15px; /*distância entre os elementos e a borda*/
}

.botoes{
    width: 50px;
    height: 50px;
    font-size: 25px;
    cursor: pointer;
    margin: 3px;
    background-color: rgb(31, 31, 31);
    border: none;
    color: white;
}

.botoes:hover{
    background-color: black;
}

#resultado{
    background-color: white;
    width: 207px;
    height: 30px;
    margin: 5px;
    font-size: 25px;
    color: black;
    text-align: right;
    padding: 5px;
}