html{
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", sans-serif;
    background-color: #121212;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

main {
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto 10px auto;
    padding: 0 20px;
}

.container h1 {
    margin: 0;
    margin-bottom: 20px;
}

.recent-posts a {
    text-decoration: none;
}

.recent-posts {
    display: grid;
    gap: 10px;
}

.post-preview {
    padding: 10px;
    border: 2px white solid;
    border-radius: 10px;
    position: relative;
    color: white;
}

.post-title {
    margin: 0;
    font-size: 1.6rem;
}

.post-description {
    margin: 0;
    margin-bottom: 15px;
    color: #888;
    font-size: 0.9rem;
}

.post-author {
    width: min-content;
    font-size: 0.9rem;
}

.post-date {
    width: min-content;
    font-size: 0.9rem;
}

.post-category {
    position: absolute;
    width: min-content;
    font-size: 0.9rem;
    bottom: 0;
    right: 0;
    margin: 10px;
    padding: 5px 10px;
    background-color: #333;
    border-radius: 20px;
}