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

body {
    font-family: 'Courier New', 'Consolas', monospace;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #e8d5f2;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f5eef8;
    padding: 30px;
    border: 1px solid #d4b5e0;
}

/* Introduction Section */
.intro {
    display: flex;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 2px solid #c9a8d8;
    margin-bottom: 30px;
}

.profile-pic {
    height: 150px;
    width: 150px;
    object-fit: cover;
    /* width: auto;
    height: 150px; */
    border-radius: 4px;
    margin-right: 25px;
    flex-shrink: 0;
}

.intro-text {
    flex: 1;
}

.intro h1 {
    font-size: 2em;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.intro p {
    font-size: 1em;
    color: #4a4a4a;
    margin-bottom: 5px;
}

.location {
    font-size: 0.95em;
    color: #666;
}

.links {
    margin-top: 12px;
    font-size: 0.95em;
}

.links a {
    color: #5c3d8f;
    text-decoration: none;
}

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

/* About Section */
.about {
    padding-bottom: 30px;
    border-bottom: 2px solid #c9a8d8;
    margin-bottom: 30px;
}

.about h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.about p {
    font-size: 0.95em;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.about strong {
    color: #2c2c2c;
}

/* Projects Section */
.projects {
    padding-bottom: 20px;
}

.projects h2 {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.project {
    min-height: 180px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d4b5e0;
}

.project_picture {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 4px;
    float: left;
    margin-right: 16px;
}

.project:last-child {
    border-bottom: none;
}

.project h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #2c2c2c;
}

.project em {
    color: #666;
    font-size: 0.9em;
}

.project p {
    color: #4a4a4a;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.project a {
    color: #5c3d8f;
    text-decoration: none;
    font-size: 0.95em;
}

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

/* Responsive Design */
@media (max-width: 700px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 20px;
    }

    .intro {
        flex-direction: column;
    }

    .profile-pic {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .intro h1 {
        font-size: 1.6em;
    }
}