* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures footer stays at the bottom */
    background-image: url(backdrop-874452_1280.jpg);
    background-size: cover;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(53, 53, 53, 0.6);
    border-bottom: 1px solid;
    /* padding: 20px; */
    top: 0;
    left: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: flex-end; 
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    cursor: pointer;
    height: 80px;
    letter-spacing: 1px;

}


a {
    text-decoration: none;
    color: white;
}

nav a:hover {
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
}
.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 120px 20px 50px; /* Added extra space for fixed header */
    width: 70%;
    margin: auto;
    color: white;
}

h1 {
    font-size: 3rem;
    text-align: left;
    border-bottom: 1px solid white;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    margin-top: auto; /* Ensures footer stays at the bottom of the page */
    background: rgba(53, 53, 53, 0.6);
    border: 1px solid white

}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }
    nav{
        height:20%
    }
    nav ul {
        /* flex-direction: column; */
        align-items: flex-start;
    }
}

@media (max-width: 380px) {
    nav a{font-size: 0.9rem;}
    }