* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
    background: #f5f5f5;
    padding-top: 0;
}

.header {
    width: 100%;
    padding: 2rem 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ff9999;
}

.container {
    background: white;
    padding: 3rem 5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    flex: 0 0 auto;
    max-width: 1000px;
    width: 90%;
}

h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #333;
    text-align: center;
}

.landing-image {
    display: block;
    margin: 0 auto 2rem;
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
}

p {
    font-family: 'sans-serif', cursive;
    font-size: 1.2rem;
    color: #666;
}

/* Post List Styles */
.post-list {
    list-style: none;
    margin-top: 2rem;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.post-list-item {
    padding: 1.5rem 0;
    text-align: center;
}

.post-list-link {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.post-list-link:hover {
    color: #ff9999;
}

/* Individual Post Styles */
.post-container {
    max-width: 800px;
    margin: 2rem auto;
}

.post-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.post-date {
    display: block;
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
    font-style: italic;
}

.post-content {
    line-height: 1.8;
    color: #555;
}

.post-content h1,
.post-content h2,
.post-content h3 {
    font-family: 'Pacifico', cursive;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content h1 {
    font-size: 2rem;
}

.post-content h2 {
    font-size: 1.7rem;
}

.post-content h3 {
    font-size: 1.4rem;
}

.post-content p {
    margin-bottom: 1.2rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.post-content ul,
.post-content ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}
