
/* Overlay Styling */
.overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Black background with 80% opacity */
    z-index: 999; /* Behind the modal but on top of other content */
}

/* Blog Post Container */
.blog-post {
	 display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    border: 1px solid #ff66cc;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: black;
    color: #ff66cc;
    border-radius: 8px;
}

/* Blog Title */
.blog-post h2 {
    font-weight: 100 !important;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #5acebf;
	font-size: 1rem;
	letter-spacing: 0.3rem;
    margin-bottom: 0.5rem;
}

/* Blog Date */
.blog-post .blog-date {
    font-size: 0.8rem;
    color: #ff66cc;
    margin-bottom: 1rem;
	letter-spacing: 0.3rem;
    font-style: italic;
}

/* Blog Content */
.blog-post p {
	
	 font-weight: 100 !important;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	letter-spacing: 0.08rem;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Blog Image */
.blog-post img {
    max-width: 100%; 
    height: auto; 
    border-radius: 5px; 
    margin: 0 auto 1rem; /* Center the image and add bottom margin */
}


/* Modal Content Styling */
.modal-content {
    overflow-y: auto; /* Allow scrolling vertically for content */
    max-height: 70vh; /* Ensure there is enough space for the content to scroll */
	margin-top: 2em;
}

