* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    scroll-behavior: smooth;
    text-decoration: none;
    font-weight: bold;
    -webkit-text-stroke: 1px black;
    list-style-type: none;
    
}

p{
    color: #00ff1e;
    text-shadow: black;
    margin-top: 40px;
}

body {
    background-image: url(image/image2/aboutbg.png); /* Update with your image path */
    background-size: cover; /* Ensures the image covers the entire area */
    background-attachment: fixed; /* Keeps the background image fixed on scroll */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

body::-webkit-scrollbar{
    display: none;
}

header {
    background: rgba(0, 0, 0, 0.324);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    width: 100%;
    height: 70px;
    position: absolute;
    z-index: 1;
}

header .logo a {
    font-size: 30px;
    color: white;
    padding: 15px 30px;
}

header .logo a span {
    color: rgb(9 228 193);
}

header nav ul {
    display: flex;
}

header nav ul li a {
    margin: 5px 20px;
    font-size: 18px;
    color: white;
    padding: 10px 10px;
}

header nav ul li a:hover {
    border-bottom: 2px solid white;
}

.content-items {
  
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2); /* low opacity */
    width: 100%;
    height: 100%;
    font-size: 30px;
    font-weight: 400;
}

.content-items .p{
    font-size: 50px;
}

.documentary-item {
    margin-bottom: 40px; /* Space between documentary items */
    text-align: center;
}

.documentary-item img {
    width: 100%;
    max-height: 60vh; /* Adjust height to fit viewport */
    object-fit: cover; /* Ensures the image covers the container */
    margin-bottom: 10px; /* Space between image and description */
    border: 2px solid;
    box-shadow: 3px 3px 8px black;
}

.documentary-item .description {
    font-size: 18px;
    color: #333; /* Adjust color as needed */
    max-width: 800px; /* Limit the width of the description text */
}

