/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
}

/* Header Styles */
header {
   background: linear-gradient(135deg, #d32f2f, #b71c1c, #880e4f); /* Darker red gradient */
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin: 0;
    color: #ffffff; /* Change text color if needed for better contrast */
}

header p {
    font-size: 1.2rem;
    color: #dcdcdc; /* Lighter color for the tagline */
}

nav ul li a {
    text-decoration: none;
    color: #ffffff; /* Make navigation links visible against dark background */
    font-weight: bold;
}

nav ul li a:hover {
    color: #e67e22; /* Hover effect for better visual feedback */
}

/* Blog Post Section */
.blog-post {
    padding: 50px;
    background-color: white;
    max-width: 1200px;
    margin: auto;
}

.blog-post article {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.image-section {
    flex: 1;
    padding: 30px;
}

.image-section_z {
    flex: 1;
    padding: 50px;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	
}

.image-section_z img {
    width: 105%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
    top: -80px; /* Moves the element 20px upwards */
}

.text-section {
    flex: 1;
    padding: 20px;
	position: relative;
    top: 40px; /* Moves the element 20px upwards */
}

.text-section h2 {
    color: #e74c3c;
    font-size: 2rem;
	position: relative;
    top: -80px; /* Moves the element 20px upwards */
}

.text-section p {
    font-size: 1.2rem;
    color: #7f8c8d;
	position: relative;
    top: -80px; /* Moves the element 20px upwards */
}

/* Footer Styles */
footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
    vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blog-post article {
        flex-direction: column;
    }

    .image-section, .text-section {
        flex: 1;
        padding: 10px;
    }
}

.project-link {
    display: block;
    margin-top: 15px;
    text-decoration: none;
    color: #ff6f61; /* Darker link color */
    font-weight: bold;
	font-size: 30px;
	position: relative;
    top: -40px; /* Moves the element 20px upwards */
}