:root {
    --cor-primary: #4f9ebd;
    --cor-secundary: #ebebeb;
    --cor-terciary: #07689f;
    --cor-4: #ffc93c;
    --cor-5: #b1bbc9;
    --cor-6: #f6f6ff;
    --cor-7: #e6e9eb;
    /* --cor-cinza: rgb(138, 138, 138); */
    --cor-cinza: #7d8b99;

    --font-primary: Roboto Mono;
    --font-secundary: Roboto;
    --font-terciary: sans-serif;
}

* {
    padding: 0; 
    margin: 0;
    outline: none;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    vertical-align: baseline;
    user-select: none;    
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-font-smoothing: antialiased;      
}

#root {
    background-color: var(--cor-primary);  
    overflow-x: hidden;
    overflow-y: auto;
    width: 100vw;
    height: 100vh;
    font: var(--font-primary), var(--font-secundary), var(--font-terciary);
}

.pageRoot {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}