html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 20px;
    line-height: 1.6;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #333;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-pic {
    max-width: 200px;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

.bio {
    color: #555;
}

.links {
    text-align: left;
}

.links h3 {
    color: #333;
    font-size: 1.3em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.links ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 0;
}

.links a {
    color: #0066cc;
    text-decoration: none;
}

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

nav {
    position: absolute;
    top: 20px;
    left: 20px;
}

nav a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.95em;
}

nav a:hover {
    text-decoration: underline;
}

footer {
    margin-top: auto;
    padding: 40px 20px 20px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}
