@import url('https://fonts.cdnfonts.com/css/museo');

body {
    font-family: museo, Helvetica, sans-serif;
    /* font-family: 'Arial', sans-serif; */
    line-height: 1.6;
    background-color: #444444;
    /* Light background */
    color: #000000;
    /* Black text for better readability */
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e0e0e0;
    color: #222;
    /* White background for the container */
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1,
h2 {
    color: #5C4033;
    /* #d32f2f; */
    /* Red for headings */
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin: 0;
}

h2 {
    border-bottom: 2px solid #5C4033;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

h3 {
    color: brown;
    font-size: 1.25em;
}

p {
    margin-bottom: 15px;
}

a {
    /* text-decoration: none; */
    color: #5C4033;
    font-size: 16px;
}

.images-group {
    margin: 4px;
}

.images-group img {
    width: 100%;
    display: block;
    margin: 10px auto 20px auto;
    border-radius: 8px;
    border: 1px solid #5C4033;
}

.section-title {
    font-size: 1.8em;
    color: #5C4033;
    /* Red for section titles */
}

.contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info a {
    text-decoration: none;
    color: #5C4033;
    /* Red for contact links */
}

.contact-info a:hover {
    text-decoration: underline;
}

.profile-image {
    display: block;
    margin: 0 auto 10px;
    border-radius: 50%;
    width: 240px;
    height: 240px;
    object-fit: cover;
    /* border: 3px solid #5C4033; */
    /* #d32f2f; */
    /* Red border for profile image */
}

/* Two-column layout for sections */
.two-column {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.two-column>div {
    width: 48%;
    /* Each column takes roughly half the space */
}

/* Responsive Projects Section */
.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-box {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    flex: 1 1 calc(48% - 10px);
    /* Project box takes half of the row */
}

.project-box img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 15px;
}

.project-box a {
    color: #d32f2f;
    text-decoration: none;
}

.project-box a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }

    .two-column>div {
        width: 100%;
        /* Each column takes full width on mobile */
    }

    .projects {
        flex-direction: column;
    }

    .project-box {
        flex-direction: column;
        align-items: flex-start;
        flex: 1 1 100%;
        /* Full width on mobile */
    }

    .project-box img {
        margin-bottom: 10px;
    }
}

/* Footer Links */
.footer-links {
    text-align: center;
    margin-top: 20px;
}

.footer-links a {
    color: #000000;
    /* Black for footer links */
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}