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

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,open sans,helvetica neue,sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
    line-height:2.2;
}

.site-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #e0e0e0;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 1.5rem;

}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    color: #ffffff;
}

/* Main */
main {
    flex: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: #666;
}

/* Home page */
.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    gap: .1rem;
    padding-bottom:13rem;
}

.home img {
    width: 300px;
    opacity: 0.9;
    padding-bottom:1rem;

}

.home h1 {
    font-size: 2.5rem;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.home p {
    font-size: 1rem;
    color: #999;

}

/* Blog list */
.blog-list {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.blog-list h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.post-entry {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.post-entry h2 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.post-entry h2 a {
    color: #e0e0e0;
    text-decoration: none;
}

.post-entry h2 a:hover {
    color: #ffffff;
}

.post-date {
    font-size: 0.85rem;
    color: #666;
}

/* Single post */
.post {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.post h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.post .post-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content h2 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    color: #e0e0e0;
}
