*{
margin: 0;
padding: 0;
box-sizing: border-box;
}


body{
    max-width: 1100px;
    margin: 0px auto;
    font-family: sans-serif;
    line-height: 1.5;
    background-color: #111;
    color:#fff
   
}

html{
 font-size: 1rem;
scroll-behavior: smooth;
}

nav{
    position: sticky;
    top: 0px;
}

.nav-container{
    max-width: 900px;
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    margin: 0 auto;
    border-radius: 32px;
   background-color: rgba(0, 0, 0, 1.8);
   
    
}

.nav-container img{
    width: 150px;
    height: auto;
}

.navlinks{
    display: flex;
    gap: 50px;
    margin: 0  auto;
}

.navlinks a{
    text-decoration: none;
    color: #fff;
    font-family: Arial;
    transition: 0.3s all ease-in-out;
    
}

.navlinks a:hover{
    color: #08e77f;
}


/* Hamburger Styling */
.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
}

header{
    position: sticky;
    top: 0px;
    z-index: 999;
}
h2{
background-color: #08e77f;
color: #111;
text-align: center;
font-size: 2.5rem;
margin-top: 60px;
margin-bottom: 20px;
}

.about-container{
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.about-content{
    margin-bottom: 60px;
    line-height: 2;
}


/* Footer */

.footer-container{
    margin-top: 60px;
    background-color: rgba(248, 244, 244, 0.1);
    padding: 10px;
}

.footer-container img{
    width: 300px;
    height: auto;
    margin-left: 400px;
   
}

.footer-links-container{
    margin: 20px auto;
    justify-content: center;
    align-content: center;
}

.footer-links,.social-links{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    gap: 40px;
    justify-content: center;
}

.footer-links a{
    text-decoration: none;
    color: #fff;
}

h4{
    font-size: 1.5rem;
    text-align: center;
    
}


.social-links svg{
    color: #fff;
    width: 50px;
    height: auto;
    
}

.social-links svg:hover{
    color: darkblue;
    background-color: #fff;
}



    @media (min-width: 320px) and (max-width: 480px){
        /* body */
    body{
    max-width: 480px;
    overflow-x: hidden;
    overflow-y: auto;
}

html{
    font-size: 1rem;

}

/* Hamburger menu */

    .hamburger { display: flex; }

    .navlinks {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: black;
        padding: 20px;
        text-align: center;
        gap: 10px;
    }

    .navlinks.active {
        display: flex; /* Show when 'active' class is toggled */
    }



h2{

margin-top: 10px;
margin-bottom: 20px;
}


.about-container{
    width: 100%;
    display: block;
    flex-direction: column-reverse;
    text-align: center;
    justify-items: center;
    padding: 10px;
}

.footer-container img{
    width: 100%;
    height: auto;
    margin: 0 auto;
   
}

    }
