/* Book-like page layout */
body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    padding: 10px 40px 20px;
    opacity: 0;
    animation: fadeIn 0.4s ease-in-out forwards;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Typography */
title, h1, h3, .nav-button {
    font-family: 'Inter', sans-serif;
    font-style: normal;
}

h1 {
    margin-bottom: 0rem;
    text-align: center;
}

/* H1 link styling */
h1 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

h1 a:hover {
    color: #666;
}

/* Navigation styling */
.nav-buttons {
    text-align: center;
    margin: 0 2em 0.5em 2em;
}

.nav-button {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-left: 0.3em;
    margin-right: 0.3em;
}

.nav-button:hover {
    color: #333;
}

p {
    font-family: 'Lora', serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: justify;
    hyphens: auto;
}

#profile-photo {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin-top: 1em;
}

.social-link {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #333;
}

.page-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: bold;
}

.page-link:hover {
    color: #999;
}
