body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: green;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .brand {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: lightgreen;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s;
}

.brand a {
    color: inherit;
    text-decoration: none;
}

.brand a {
    color: #fff;
    text-decoration: none;
    font-family: "Pacifico", serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
    }

    .navbar .brand {
        flex: 1;
    }

    .hamburger {
        display: flex;
        justify-content: flex-end;
    }

    .navbar .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 0;
        background-color: green;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 10px 0;
        text-align: left;
        padding: 10px;
        width: 100%;
    }
}

/* Center Headings */
#creations,
#contact,
#home {
    text-align: center;
}

main {
    flex: 1;
}

.about {
    padding: 20px 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 85%;
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    line-height: 2;
    color: #777;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-family: "Open Sans", serif;
    font-size: 50px;
    text-decoration: underline;
}

.about p {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
    font-family: "Galindo", serif;

}

/* Footer styles */
footer {
    background-color: green;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

footer a {
    color: #00FFA3;
    /* Mentos color */
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 5px;
}

.social-links img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links a {
        margin: 10px;
    }
}