body {
    font-family: Arial, sans-serif;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text for readability */
    margin: 0;
    padding: 0;
}
header {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}
nav {
    background-color: #333;
    overflow: hidden;
}
nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
nav a:hover {
    background-color: #575757;
}
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #1a1a1a; /* Dark gray for contrast */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
h1 {
    color: white;
}
h2 {
    color: #f4f4f4;
}
footer {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9em;
    color: #aaaaaa;
}
a {
    color: #1e90ff; /* Light blue links */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.media-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.media-list a {
    display: block;
    margin-bottom: 10px;
    color: #1e90ff;
    text-decoration: none;
}
.media-list a:hover {
    text-decoration: underline;
}
img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
video, audio {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.media-grid iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.media-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}
.media-grid img:hover {
    transform: scale(1.05);
}
hr {
    border: none;
    height: 2px;
    background-color: #ccc;
    margin: 40px 0;
}
.article-content {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center the image horizontally */
    gap: 20px; /* Add space between elements */
}

.article-image {
    width: 70%; /* Adjust the size of the image */
    max-width: 500px; /* Limit the maximum size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    cursor: pointer; /* Pointer cursor on hover */
    transition: transform 0.2s; /* Smooth scaling effect */
    margin: 0; /* Ensure no extra margin shifts alignment */
}

.article-content p {
    text-align: left; /* Ensure the text is left-aligned */
    width: 100%; /* Use full width of the container for paragraphs */
}

}

.article-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}
/* Video wrapper for maintaining uniform size */
.media-grid video {
    width: 300px; /* Fixed width for all thumbnails */
    height: 200px; /* Fixed height for all thumbnails */
    object-fit: cover; /* Ensures videos fit uniformly within the dimensions */
    border: 2px solid #444;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for videos */
.media-grid video:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}
/* General styling for media grid */
.media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Uniform styling for video thumbnails */
.media-grid video {
    width: 300px; /* Set a fixed width for all videos */
    height: 200px; /* Set a fixed height for all videos */
    object-fit: cover; /* Ensures thumbnails are consistent */
    border: 2px solid #444;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for videos */
.media-grid video:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Video description styling */
.video-description {
    text-align: center;
    margin-top: 8px;
    color: #ddd;
    font-size: 14px;
}
.media-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
}

.video-wrapper {
    width: 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 169px; /* 16:9 aspect ratio */
    object-fit: cover;
}

.video-explainer {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
/* General Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

header h1 {
    text-align: center;
    color: orange; /* Updated header color */
}

h2 {
    color: orange; /* Updated heading color */
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background-color: #222;
    padding: 1rem 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s, background-color 0.3s;
}

nav a:hover {
    color: orange; /* Hover effect for navigation menu */
    background-color: #444;
}

nav a.active {
    color: orange; /* Active page link */
}

/* Media Grid Styles */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem;
    justify-items: center;
}

.media-grid img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.media-grid img:hover {
    transform: scale(1.05);
    border: 2px solid orange;
}
/* General Link Styles */
a {
    color: #fff; /* Same as main text color */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
   	 color: orange; /* Change color to orange on hover */
	text-decoration: none; /* No underline */
	transform: scale(1.05);

}
/* Make navigation responsive for screens smaller than 768px */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column; /* Stack the links vertically */
        align-items: center; /* Center align the links */
    }

    nav a {
        margin: 5px 0; /* Add spacing between links */
        text-align: center; /* Center text alignment */
    }
}
.logo {
    max-width: 200px; /* Adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 20px;
}
.visually-hidden {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    white-space: nowrap;
}

