body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333333;
    margin: 40px;
    text-align: center;
}

header h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.8em;
    margin-bottom: 15px;
}

nav {
    margin-bottom: 20px;
}

nav a {
    text-decoration: none;
    color: #999;
    margin: 0 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

nav a:hover {
    color: #555;
}

hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
}
/* main page */
.section-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #495057;
}
.project, .award {
    margin-bottom: 15px;
}

/* contacts */
.container {
    display: flex;
    align-items: flex-start;
}

.sidebar {
    flex: 0 0 250px;
    padding-right: 50px;
    text-align: right;
    border-right: 1px solid #ddd;
}

.sidebar h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.sidebar nav a {
    text-decoration: none;
    color: #999;
    font-weight: bold;
    line-height: 2em;
}

.sidebar nav a.active, .sidebar nav a:hover {
    color: #333;
}

.content {
    flex: 1;
    padding-left: 50px;
    font-size: 1.1em;
}

.content .content-list {
    list-style-type: disc;
    padding-left: 20px;  /* Ensures bullet alignment */
    text-align: left;    /* Aligns text properly to the left */
}

.content .content-list li {
    margin-bottom: 10px; /* Uniform spacing between list items */
}

/* .content ul {
    list-style-type: disc;
    margin-left: 20px;
} */

.content a {
    color: #0000EE;
    text-decoration: none;
}

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