body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 50px;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

h1 {
    color: #333;
    margin-top: 10px;
    margin-bottom: 5px;
}

p {
    margin-top: 2px;
    margin-bottom: 2px;
}

.links {
    margin-top: 20px;
}

.links a {
    display: inline-block;
    margin: 0 10px;
    color: #929292;
    text-decoration: none;
    font-size: 24px;
}

.links a:hover {
    color: #0056b3;
    text-decoration: none;
}

.project-link {
    color: #222;
    text-decoration: none;
    font-weight: bold;
}

.project-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.project-link:visited {
    color: #222;
    font-weight: bold;
} 