
dy {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

header p {
    font-style: italic;
}

/* Navigation */
nav {
    background: #333;
    color: white;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #ddd;
    object-fit: cover;
}

/* Main Sections */
main section {
    margin-bottom: 40px;
}

h2 {
    color: #333;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

footer p {
    margin: 0;
}

.publication-list li {
    margin-bottom: 15px; /* Adds space between each list item */
}
