<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Roboto';
    margin: 0;
    padding: 0;
    background-color: #efe6dd;
    color: #4e342e;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.name {
    margin-top: 20px;
    font-size: 32px;
    color: #795548;
}

.bio h2 {
    margin-top: 30px;
    font-size: 24px;
    color: #795548;
}

.bio ul {
    list-style: none;
    padding-left: 0;
}

.bio ul li {
    margin-bottom: 15px;
    font-size: 18px;
    color: #6d4c41;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}</pre></body></html>