body {
    background-color: #1e1e2f;
    font-family: Arial, sans-serif;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.blog-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    border-radius: 8px;
}
/* .blog-picture {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
} */

.blog-header h1 {
    font-size: 2em;
    margin: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.blog-content h2 {
    color: #00cc99;
    font-size: 1.5em;
    margin-top: 20px;
}

.blog-content p {
    font-size: 1em;
    line-height: 1.6;
    margin: 10px 0;
    color: #cfcfcf;
}

.blog-content {
    padding: 20px;
    background-color: #29293d;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsive Design */

/* Medium screens (tablets, small laptops) */
@media (min-width: 768px) and (max-width: 1023px) {
    .project-page {
        max-width: 600px;
        padding: 15px;
    }
    .video {
        height: 400px; /* Adjust video height for medium screens */
    }
}

/* Large screens (desktops) */
@media (min-width: 1024px) {
    .project-page {
        max-width: 900px;
        padding: 20px;
    }
    .video {
        height: 500px; /* Larger video height for desktop screens */
    }
}

/* Extra large screens (large desktops) */
@media (min-width: 1400px) {
    .project-page {
        max-width: 1100px;
        padding: 30px;
    }
    .video {
        height: 600px; /* Further increase video height for large screens */
    }
}