body {
    font-family: Arial, sans-serif; 
    margin: 0; 
    background-color: #333; 
    color: white; 
}

header {
    background-color: #ccc; 
    padding: 10px 20px; 
    border-radius: 150px; 
    width: 80%; 
    position: absolute; 
    top: 10px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 10; 
}

.header-content {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

nav ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: inline-flex; 
    align-items: center; 
    border-radius: 15px; 
}

nav li {
    margin-left: 20px; 
}

nav a {
    text-decoration: none; 
    color: #444; 
}

.dropdown {
    position: relative; 
    display: inline-block; 
}

.dropdown-content {
    display: none; 
    position: absolute; 
    background-color: #ccc; 
    color: #000;
    min-width: 160px; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
    z-index: 1; 
}

.dropdown-content a {
    color: #000; 
    padding: 5px 5px; 
    text-decoration: none; 
    display: block; 
}

.dropdown:hover .dropdown-content {
    display: block; 
    border-radius: 15px; 
}


footer {
    background-color: #222; 
    text-align: center; 
    padding: 10px; 
    position: fixed; 
    bottom: 0; 
    width: 100%; 
}

.burger {
    display: none; 
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
 }
 
 .bar {
    background-color: #444;
    height: 3px;
    width: 100%;
    margin: 4px 0;
    border-radius: 2px;
 }
 
 @media (max-width: 1000px) {
     nav ul {
        display: block;
        position: fixed;
        top: 40px;
        right: 1px;
        width: 16.666%; 
        background-color: #ccc;
        padding: 15px 20px; 
     }
     
     nav li {
            margin-top: 15px; 
         }
     
     .dropdown-content {
        position: static;
        display: none;
        background-color: #ccc;
        color: #fff;
     }
 
     .burger {
        display: block;
     }
 }

.image {
    position: fixed;
    top: 50%;
    left: 60%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: -1; 
    object-fit: cover; 
    border-radius: 100px;
}

.text-container {
    width: 60%;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: white; 
    text-align: center; 
    position: fixed; 
}

.text-container h1 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
    
}

.text-container p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}