* {
    margin: 0;
    padding: 0;
    font-family: 'montserrat';
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.dropdown-logo {
    display: flex;
    align-items: center;
}

.menu-btn {
    color: rgb(0, 0, 0);
    font-size: 25px;
    font-weight: lighter;
    margin: 10px;
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #374231;
    min-width: 150px;
    border-radius: 10px;
}

.dropdown a{
    display: block;
    color: black;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 15px;
    color: white;
}

.menu-btn:hover .dropdown {
    display: block;
}

h1 {
    font-weight: 400;
}

#titledesc {
    font-weight: 250;
    font-size: small;
}

.title {
    text-align: center;
}

#logo {
    width: auto;
    height: 70px;
}

.subtitle {
    text-align: center;
    padding: 30px;
}

.imgmangrove {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

main {
    border-top: rgba(201, 201, 201, 0.719);
    border-style: solid;
    border-left-color: white;
    border-right-color: white;
}

.content-mangrove {
    margin: 60px;
    display: inline-block;
    justify-content: space-around;
    justify-self: left;
    text-align: justify;
    padding: 10px 50px 10px 50px;
    padding-left: 100px;
    padding-right: 100px;
}

footer {
    background-color: #171A22;
    color: white;
    text-align: center;
    padding: 100px;
}

.footer-content {
    padding-top: 0px;
    display: flex;
    justify-content: space-between;
    text-align: justify;
    font-size: small;
}

#link {
    text-decoration: none;
    color: white;
    line-height: 30px;
}

#maps {
    display: block;
    position: relative;
    margin-left: 630px;
    margin-top: 0px;
}

/* Media Query for screens with a maximum width of 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 13px;
        line-height: 0%;
    }

    #titledesc {
        font-size: 7px;
        line-height: 0%;
    }

    #logo {
        width: 40px;
        height: auto;
    }

    h2 {
        font-size: medium;
    }

    .subtitle {
        padding: 20px;
    }

    .content-mangrove {
        margin: 30px;
        padding: 10px;
        padding-left: 50px;
        padding-right: 50px;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }

    svg {
        height: 60px;
        padding-right: 40px;
    }

    footer {
        padding: 50px; /* Reduce padding */
    }

    .footer-content {
        flex-direction: column; /* Stack items vertically */
        text-align: left; /* Center align content */
        line-height: 15px;
    }

    #maps {
        width: 310px;
        margin: 0 auto; /* Center map */
        margin-top: 20px; /* Adjust top margin */
        margin-left: auto; /* Center map */
        margin-right: auto; /* Center map */
    }
}
