* {
    margin: 0;
    padding: 0;
    font-family: 'DotGothic16';
}

@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Inter:wght@400;900&family=Montserrat&family=Open+Sans:wght@300&family=Poppins:wght@400;900&family=Roboto:ital,wght@0,300;1,300&family=VT323&display=swap');

.fundo {
    background-image: linear-gradient(45deg, rgb(253, 253, 253), rgb(255, 187, 238));
    height: 100vh;
    color: rgb(250, 242, 247);
    text-align: center;
}

.calculadora {
    position: absolute;
    background: rgb(255, 184, 206);
    background-size: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    padding: 15px;
}

.botao {
    width: 50px;
    height: 50px;
    font-size: 25px;
    border-radius: 50px;
    cursor: pointer;
    background-color: rgb(250, 242, 247);
    border: none;
    color: rgb(250, 101, 188);
    margin: 3px;
}

.botao:hover {
    background-color: rgb(243, 157, 183);
}

#resultado {
    background-color: rgb(250, 242, 247);
    border-radius: 15px;
    width: 207px;
    height: 30px;
    margin: 5px;
    font-size: 25px;
    color: rgb(248, 91, 183);
    text-align: right;
    padding: 10px;
}