
*{
    scroll-behavior: smooth;
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body::-webkit-scrollbar{
    display: none;
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1em;
    margin-top: auto;
}

section .container{
    margin: 100px;
}

section h2{
    font-size: 50px;
}

section p{
    font-size: 30px;
}

section .cards{
    display: flex;
}

section .cards .text-card{
    padding: 30px;padding-top: 20px;
    border: 2px white;
    box-shadow: 3px 3px 6px black;
}

section .cards .text-card h3{
    font-size: 70px;
    margin-bottom: 15px;
}

section:nth-child(3) h3,p{
    text-align: left;
}

section:nth-child(5) h3,p{
    text-align: left ;
}
section:nth-child(7) h3,p{
    text-align: left ;
}

section:nth-child(2),section:nth-child(4),section:nth-child(6) p,h3{
    text-align: right;
}


section{
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-text-stroke: .3px black;
    background-repeat: no-repeat;
    background-size: cover;
}

section:nth-child(2){
    background-image: linear-gradient(rgb(0,0,0,0.5),rgb(0,0,0,0.1)), url(image/image2/Front.jpg);
    background-position: center;
    color: rgba(255, 255, 255, 0.822);
    min-height: 100vh;
    font-size: 60px;
}

section:nth-child(3){
    color: white;
    background-image: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.6)), url(image/image2/Spread.jpg);
    background-position-x: -10%;
    
}

section:nth-child(4){
    color: white;
    background-image: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.6)), url(image/image2/Educate.jpg);
    background-position: center;
    text-align: left;

}

section:nth-child(5){
    color: white;
    background-image: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.6)), url(image/image2/Reforest.jpg);
    background-position-y: 50%;

}

section:nth-child(6){
    color: white;
    background-image: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.6)), url(image/image2/Agroforestry.jpg);
    background-position-y: 35%;
}

section:nth-child(7){
    color: white;
    background-image: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.6)), url(image/image2/Community.jpg);
    background-position-y: 10%;
}




@media (max-width: 900px){
    section h2{
        font-size: 40px;
    }

    section .cards{
        flex-direction: column;
    }
}

.reveal{
    position: relative;
    transition: translateY(150px);
    opacity: 0;
    transition: all ease 1.5s;
}

.reveal.active{
    transition: translateY(0px);
    opacity: 1;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    width: 100%;
    height: 70px;
    
    position: absolute;
    z-index: 1;
}

header .logo a {
    font-size: 30px;
    color: white;
    padding: 15px 30px;
}

header .logo a span {
    color: rgb(9 228 193);
}

header nav ul {
    display: flex;
}

header nav ul li a {
    margin: 5px 20px;
    font-size: 18px;
    color: white;
    padding: 10px 10px;
}

header nav ul li a:hover {
    border-bottom: 2px solid white;
}