/* Reset and ensure no unexpected margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    font-family: sans-serif;
    background-color: aqua;
}

/* Fullscreen background section */
.card {
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
}

.card-content {
    background: rgba(0, 0, 0, 0.5);
    /* optional: for readability */
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
}

/* Rest of the page */
.page {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    align-items: center;

}

.content {
    margin-top: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* Vertical centering */
    align-items: center;
    /* Horizontal centering */
    background: rgb(179, 255, 208);
    border: 1px solid #ddd;
    box-sizing: border-box;
    text-align: left;

}

.header h1 {
    margin-top: 0;
}

.post-meta {
    font-size: 0.9em;
    color: #888;
    margin: 10px 0;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.post-body {
    line-height: 1.8;
    word-break: break-word;
}

.post-body h2,
h3 {
    padding-top: 10px;
    padding-bottom: 10px;
}