body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #292929;
    color: #333;
}
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}
header h1 {
    margin: 0;
}
h1 a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
}
nav {
    background: #555;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}
.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    padding: 0.55rem;
    margin: 0;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
}
.nav-links a:hover {
    text-decoration: underline;
}
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    background: #555;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    left: 1rem;
}
.hamburger:focus {
    outline: none;
}
@media (max-width: 775px) {
    .post .post-text {
        width: 300px;
    }
}
@media (max-width: 725px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #555;
        z-index: 1000;
        margin: 0;
        padding: 0;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links a {
        margin: 0;
        padding: 1rem;
        text-align: center;
    }

    .posts-container {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
    }
    .post {
        flex-direction: column;
        align-items: center;
    }
    .post-image-container {
        order: -1;
    }
    .container .post-text {
        width: 300px;
    }
    .container {
        width: 300px;
    }
    .posts-container .container {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
@media (max-width: 700px) {
    .post .post-image {
        width: 275px;
        height: 175px;
    }
    .post .post-text {
        font-size: 15px;
    }
    .container .imageless-post-text {
        font-size: 15px;
        margin: 0;
    }
    .post .post-text {
        width: 275px;
    }
    .container {
        width: 275px;
    }
}
@media (max-width: 650px) {
    .post .post-image {
        width: 250px;
        height: 163px;
    }
    .post .post-text {
        font-size: 14px;
    }
    .container .imageless-post-text {
        font-size: 14px;
    }
    .post .post-text {
        width: 250px;
    }
    .container {
        width: 250px;
    }
}
@media (max-width: 600px) {
    .post .post-image {
        width: 225px;
        height: 150px;
    }
    .post .post-text {
        font-size: 13px;
    }
    .container .imageless-post-text {
        font-size: 13px;
    }
    .post .post-text {
        width: 225px;
    }
    .container {
        width: 225px;
    }
}
@media (max-width: 550px) {
    .post .post-image {
        width: 200px;
        height: 138px;
    }
    .post .post-text {
        font-size: 12px;
    }
    .container .imageless-post-text {
        font-size: 12px;
    }
    .post .post-text {
        width: 200px;
    }
    .container {
        width: 200px;
    }
}
@media (max-width: 500px) {
    .post .post-image {
        width: 100%;
        height: auto;
    }
    .post .post-text {
        font-size: 16px;
    }
    .container .imageless-post-text {
        font-size: 16px;
    }
    .post .post-text {
        width: 100%;
        margin: 0;
    }
    .posts-container .container {
        width: 100%;
        padding: 20px 20px;
    }
    .post .post-image-container {
        margin: 0;
    }
}
@media (max-width: 370px) {
    .post .post-text {
        font-size: 15px;
    }
    .container .imageless-post-text {
        font-size: 15px;
    }
}
@media (max-width: 320px) {
    .post .post-text {
        font-size: 14px;
    }
    .imageless-post-text {
        font-size: 14px;
    }
}
.verse-quote {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-style: italic;
    color: #fff;
    border-left: 4px solid #1e1e1e;
    padding: 10px 20px;
    margin: 20px auto;
    background-color: #303030;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}
.container, .post-container {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
    background: #3f3f3f;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.container {
    cursor: pointer;
}
.post {
    display: flex;
    justify-content: space-between;
}

.post-text {
    margin: 0px 10px;
    width: 370px;
}

.image-text {
    font-style: italic; 
    color: rgb(202, 202, 202); 
    padding: 0; 
    margin: 0;
}

.full-post-image {
    width: 100%; 
    height: auto;
}

.imageless-post-text {
    margin: 0px 10px;
}

.post-image-container {
    margin: 0px 10px;
    display: flex;
    align-items: center;
}

.post-image {
    width: 300px;
    height: 200px;
}

.post h2 {
    color: #fff;
}
.post p {
    margin: 1rem 0;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}