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

body {
    background-color: #e9f5db;
    color: #333;
    font-family: Cambria, Georgia, serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
} 

header.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    /* padding-bottom: 20px; */
    /* border-bottom: 1px solid #ccc; */
}

.text-section {
    flex: 1;
    max-width: none;
}

.text-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.text-section p {
    margin: 5px 0;
}

.text-section .links a {
    text-decoration: none;
    color: #333;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.text-section .links a:hover {
    color: #005f56;
    text-decoration: underline;
}

.image-section img {
    max-width: 170px;
    border-radius: 50%;
}

.bio {
    margin-top: 30px;
    padding-top: 10px;
    line-height: 1.6;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding-top: 30px;
    padding-bottom: 30px;
}

a {
    color: #005f56;
}

a:visited {
    color: #005f56; 
}

a:hover {
    color: #333;
}

a:active {
    color: #333;
}


.navbar {
    display: flex;
    justify-content: center;
    gap: 90px;
    background-color: #e9f5db;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.7rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #005f56;
}

.footer {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #555;
    font-size: 0.9rem;
}
.footer a {
    color: #005f56;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
