* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background-color: white;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    padding: 60px 80px 100px 200px;
    flex: 1;
    padding-bottom: 100px; 
}

a {
    color: #333;
}

h1 {
    font-size: 2.5em;
    font-weight: normal;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.underline {
    text-decoration: underline;
}

.page-title {
    font-size: 1.8em;
    font-weight: normal;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.page-title a {
    color: #333;
}

.project {
    margin-bottom: 60px;
}

.project-title {
    font-size: 1.4em;
    font-weight: normal;
    margin-bottom: 15px;
    color: #333;
}

.project-description {
    font-size: 1em;
    line-height: 1.7;
    color: #666;
    margin-left: 0;
}

.intro {
    font-size: 1.1em;
    margin-bottom: 50px;
    line-height: 1.8;
}

.section {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 1.8em;
    font-weight: bolder;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.experience-list {
    list-style: none;
    margin-left: 20px;
}

.experience-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.experience-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.projects-list {
    list-style: none;
    margin-left: 20px;
}

.projects-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.projects-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.project-link {
    text-decoration: underline;
    color: #333;
    cursor: pointer;
}

.project-link:hover {
    opacity: 0.7;
}

.papers-section {
    margin-bottom: 50px;
}

.paper-text {
    margin-left: 20px;
    font-style: italic;
    color: #666;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #333;
    background-color: white;
}

.footer a {
    color: #333;
    text-decoration: underline;
    margin: 0 15px;
}

.footer a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
        padding-bottom: 100px;
    }
            
    h1 {
        font-size: 2em;
    }

    .page-title {
        font-size: 1.5em;
    }

    .project-title {
        font-size: 1.2em;
    }
}