:root {
    --primary-color: #FFB6C1;
    --secondary-color: #98FB98;
    --text-color: #333;
    --background-color: #FFF;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 a {
    text-decoration: none;
    color: inherit;
}

nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

.posts {
    flex: 1;
}

.post {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.post:hover {
    transform: translateY(-2px);
}

.post time {
    display: block;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.post h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.post h2 a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.post h2 a:hover {
    color: var(--primary-color);
}

.post p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.social a:hover {
    color: var(--primary-color);
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .post {
        padding: 1rem;
    }
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: white;
} 