* {
    padding: 0;
    margin: 0;
}

/*configurações para retirar os spinners*/
input[type="number"]{
    all: unset;
    font-size: var(--font-size-default);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/*animações de tela*/



/*definição de variáveis auxiliares*/
:root {
    /*paleta de cores*/
    --cor-yellow: #FFC23D;
    --cor-red: #fa2125;
    --cor-texthover: #FF3636;
    --cor-green: #71917D;
    --cor-greentext: #325C42;

    /*fontes*/
    --font-size-default: 18px;
    --font-size-default2: 21px;
    --font-size-title: 25px;
    --font-size-titlepc: 44px;
}

/*definição default body*/
body {
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    align-items: center;
    background: url(../imagens/fundocontainer.webp) repeat;
    background-size: 25%;


}

