/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Courier Prime', 'Courier New', 'Courier', monospace; */
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f5f5f5;
    color: #1a1a1a;
    line-height: 1.5;
    padding: 40px 20px;
}

p {
    font-size: 0.9em;
}

a {
    color: #1a1a1a;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 50px;
}

/* Header */
header {
    padding-bottom: 10px;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1em;
    color: #555;
    font-style: italic;
}

/* Sections */
section {
    margin-bottom: 75px;
}

h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.1em;
    font-weight: normal;
    margin-bottom: 8px;
}

/* About section */
.about p {
    margin-bottom: 15px;
}

/* Links section */
.links {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.links a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.2s;
}

.links a:hover {
    opacity: 0.6;
}

/* Publications */
.publication {
    margin-bottom: 35px;
}

.publication h3 {
    margin-bottom: 5px;
}

.authors {
    color: #555;
    margin-bottom: 3px;
}

.venue {
    color: #555;
    margin-bottom: 10px;
}

.award {
    background-color: #e8e8e8;
    color: #000;
    padding: 2px 8px;
    font-size: 0.85em;
}

.more-link {
    margin-top: 25px;
    font-size: 0.95em;
}

.more-link a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.more-link a:hover {
    border-bottom: 2px solid #1a1a1a;
}

/* Projects */
.project {
    margin-bottom: 30px;
}

.project h3 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #777;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }
    
    body {
        padding: 20px 10px;
    }
}