body,
h1,
h2,
h3,
p,
ul,
li,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f2f2f2;
    font-size: 14px;
    margin: auto;
    max-width: 800px;
    justify-content: center;
}

header {
    background-color: #3498db;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: auto;
}

.hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        /* Initially hide the menu */
        flex-direction: column;
        width: 100%;
        background-color: #3498db;
        /* Background color for the dropdown */
    }

    nav.active ul {
        display: flex;
        /* Show the menu when active */
    }

    nav ul li a {
        padding: 0.5rem;
        display: block;
        color: #fff;
    }
}


nav ul {
    display: flex;
}

nav li a {
    color: #fff;
    margin: 0 1rem;
    text-transform: uppercase;
}

.hero {
    background-size: cover;
    background-position: center;
    padding: 5rem;
    text-align: center;
    max-width: 800px;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.hero h2 {
    margin-bottom: 1.5rem;
}

.initiatives img {
    object-fit: cover;
    width: 100px;
    height: 100px;
}

.initiatives h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta {
    padding: 0.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta p {
    text-align: center;
    line-height: 1.7;
}

.cta img {
    object-fit: cover;
    width: 100px;
    height: 100px;
}

.cta:hover {
    background-color: #2980b9;
}

.about-me,
.initiatives,
.contact {
    padding: 2rem;
}

h2 {
    margin-bottom: 1rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.grid-item {
    background-color: #f2f2f2;
    padding: 1rem;
    border-radius: 5px;
}

#back-to-top {
    position: fixed;
    bottom: 2em;
    right: 2em;
    text-decoration: none;
    color: #ffffff;
    background-color: #3498db;
    font-size: 16px;
    padding: 1em;
    display: none;
    border-radius: 5px;
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #2980b9;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #34495e;
    color: #fff;
}