
/* Blog Container */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background-image: url('../images/BlogBackground.webp'); /* Replace with your actual image path */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    margin-top: 50px;
}

/* Blog Preview */
.blog-preview {
    background: #222;
    padding: 20px;
    margin: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px #0ff;
    transition: transform 0.3s ease;
}

.blog-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #0ff;
}

.blog-preview img {
    width: 100%;
    border-radius: 10px;
}

.blog-preview h2 {
    font-size: 20px;
    color: #0ff;
}

.blog-preview .date {
    color: #0ff;
    font-size: 14px;
}

.blog-preview .excerpt {
    font-size: 16px;
    color: #0ff;
}

.blog-preview .read-more {
    text-decoration: none;
    color: cyan;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Blog Content */
.blog-content {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    
}

.blog-content img {
    width: 100%;
    border-radius: 10px;
}

.blog-content .date {
    font-size: 14px;
    color: cyan;
}

.back-to-blogs {
    display: block;
    margin-top: 20px;
    text-decoration: none;
    color: cyan;
    font-weight: bold;
}