*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

.wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    margin-bottom: 2rem;
    text-align: center;
}

.header-content {
    display: inline-flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.site-icon {
    width: 40px;
    height: auto;
}

.title-and-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.title-and-nav h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: normal;
}

.title-and-nav nav {
    margin-top: 0.5rem;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid transparent;
}

nav a:hover {
    border-bottom: 1px solid #333;
}

.site-main {
    flex: 1;
}

.site-footer {
    text-align: center;
    margin-top: 2rem;
}

.site-footer p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.centered-image {
    display: block;
    margin: 0 auto;
}