/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS MAIN */
main {
    background-color: #E4D1A0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Roboto Slab', serif;
    color: #4D4E41;
}