html, body {
    margin: 0;
    min-height: 100vh;
}

body { 
    font-family: sans-serif; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    background-color: #FFFAF3;
    color: #0F3040;
}

.content {
    flex: 1;
    padding: 40px 20px 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sekcja wpisu */
.post {
    margin: 30px 0;
    width: 100%;
}

.post-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.post-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 15px 0 5px;
}


/* 88x31 */

.badges {
    margin-top: auto;   
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding-top: 40px;
}

.badges img {
    width: 88px;
    height: 31px;
    image-rendering: pixelated; 
}

footer {
    padding: 20px 0;
    font-size: 0.85rem;
    color: #666;
}
