@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* height: 80%; */
}

html{
    scroll-behavior: smooth;
}
:root{
    font-family: 'Montserrat', sans-serif;
    --cor01:#076633;
    --cor02:#E55933;
    --cor03:#E0E0E0;
    --cor04:#707070;
    --branco:#F3F3F3;
    --textShadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
    --boxShadow: 2px 2px 11px rgba(0, 0, 0, 0.3);
    --fontParagraph:1.0em;
    --fontH2: 4em;
    --timeSlider:8s;
}

body{
    width: 100%;
    height: 100vh;
}

.displayNone{
    display: none;
}

.displayVisible{
    display: block;
}

.section {
    width: 100%;
    height: 95%;
}


