body {
    font-family: 'Arial', sans-serif;
    color: #333;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

header h1 {
    font-size: 24px;
    color: #000;
}

header p {
    font-size: 16px;
    color: #666;
}

.contact-info, .social-links {
    font-size: 14px;
    margin-top: 10px;
}

.social-links a {
    color: #007bff;
    text-decoration: none;
}

h2 {
    color: #000;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

section h3 {
    color: #000;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.job h3, .education div h3 {
    font-size: 16px;
    color: #333;
}

.job p, .education p, .skills p, .experience p, .publications p, .honors p, .languages p, .description p {
    font-size: 14px;
    line-height: 1.6;
}

ul {
    margin-top: 5px;
}

li {
    font-size: 14px;
    line-height: 1.6;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}

.project-links {
    display: flex;
    gap: 15px;
    justify-content: start;
    align-items: center;
    margin-bottom: 1em;
}

.project-logo {
    width: 90px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

.project-logo:hover {
    transform: scale(1.1);
}

.reduced-font {
    font-size: 0.9em; /* Adjust the scaling factor as needed */
    line-height: 1.2; /* Adjust line height if necessary */
}