* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Header Styling */
header {
    background-color: #2c3e50; /* Navy */
    color: white;
    text-align: center;
    padding: 40px 0;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #bdc3c7; /* Light grey hover color */
}

/* Section Styling */
section {
    padding: 40px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2.5rem;
    color: #2c3e50; /* Navy */
    margin-bottom: 20px;
}

section h3 {
    font-size: 1.8rem;
    color: #2c3e50; /* Navy */
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    list-style: square;
}

ul li {
    margin-bottom: 10px;
}

strong {
    color: #95a5a6; /* Grey */
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50; /* Navy */
    color: white;
}

footer a {
    color: #bdc3c7; /* Grey */
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Image Container */
.image-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* Image Styling */
.image {
    width: 48%;
    height: 300px; /* Equalize image size */
    object-fit: cover; /* Fix image without distortion */
    border-radius: 8px;
}

.work-image {
    object-position: top; /* Fix crop position of casual photo */
}

.casual-image {
    object-position: center; /* Center the casual image */
}
.github-icon {
    font-size: 40px;
    color: #fff; /* White */
}
