body {
    background-color: #121217;
    overflow-x: hidden;
}

.navbarcontent {
    position: fixed; 
    top: 0;
    left: 50%; 
    transform: translateX(-50%);
    z-index: 1000;
    width: 75%;
    padding: 24px 48px;
    border-radius: 100px;
    margin-top: 12px;
    backdrop-filter: blur(10px);
    font-size: 20px;
}
.childnav {
    display: flex;
    justify-content: end;
}

.childnav>a {
    font-family: "Rethink Sans", sans-serif;
    margin-right: 50px;
    text-decoration:none;
    font-weight: 100;
    color: white;
    cursor: pointer;
}


.menu-toggle {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;

    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 10000;
}

.footer {

    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
}

.footer-links {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #ff6200;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbarcontent {
        padding: 20px 0;
    }

    .navbarcontent.active .childnav {
        display: flex;
    }

    .childnav a {
        font-size: 16px;  
        padding: 10px;
        border-bottom: 1px solid #444;  
    }

    .childnav a:last-child {
        border-bottom: none;
    }

}

@media (max-width: 480px) {
    .childnav a {
        font-size: 14px;  
    }
}

@media (max-width: 768px) {
    .childnav {
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center; 
        display: none; 
        width: 100%;
        background-color: #121217;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 15px 0;
        border-top: 1px solid #fff;
        transition: transform 0.3s ease;
    }
    

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    .childnav a {
        font-size: 16px;
        padding: 10px;
        border-bottom: 1px solid #444;
        align-items: center; 
        justify-content: center;
        transform: translateX(35%);
        margin: 0;
    }

    .childnav a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .childnav a {
        font-size: 14px;
    }
}

