@import url('https://fonts.googleapis.com/css2?family=Domine:wght@575&display=swap');
body {
    font-family: Domine, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header h1 {
    margin: 0;
    display: inline-block;
}

#viewAllPosts {
    float: right;
    margin-top: 10px;
    padding: 5px 10px;
    cursor: pointer;
}

#posts-container {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post {
    width: 80%;
    margin: 10px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.post-title {
    margin-top: 0;
}

.post-link {
    text-decoration: none;
    color: blue;
}
