html, body {
    margin: 0;
    padding: 0;
    font-family: "Inria Sans", sans-serif;
    color: rgb(34, 34, 33);
    height: auto;
}

p {
    font-size: 18px;
}

header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between; 
    align-items: center;
    background-color: #588157;
    padding: 30px 20px;
    color: #dad7cd
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 25px;
}

nav ul li a {
    padding: 5px 30px;
    transition: 0.5s;
}

nav ul li a:hover {
    background-color: #344e41;
    padding: 5px 30px;
}

footer {
    background-color: #588157;
    color: #dad7cd
}


.slogan {
    font-weight: bolder;
    font-size: 30px;
}

.banner {
    background-image: url("../Images/main-photo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: start;
    justify-content: left;
}

.banner h1 {
    font-family: "Instrument Serif", serif;
    font-size: 5vw;
    margin-top: 100px;
    margin-left: 50px;
    text-shadow: 3px 2px 1.5px #dad7cd;
    letter-spacing: 5px;
}

.blog-posts {
    background-color: #dad7cd;
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
} 


figure {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 20px 0 30px;
}

.gallery {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.img-size{
    width: 400px;
    height: 280px;
    margin: 10px;
}

.awareness {
    background-color: #3a5a40;
    color: #dad7cd;
    padding: 20px 30px;
}

.awareness h2, .awareness h3 {
    text-align: center;
    font-weight: 900;
    text-transform: capitalize;
}

