@font-face {
    font-family: "FreePixel";
    src: url("https://sadhost.neocities.org/fonts/FreePixel.ttf") format("truetype");
}

:root {
    --background: rgba(10, 20, 15, 0.8); /* dark forest glass */
    --main-color: #2E8B57;              /* sea green */
    --main-color-dk: #1C3B2A;           /* dark moss */
    --accent-1: #A4D792;                /* soft fern green */
    --accent-2: #66CDAA;                /* medium aquamarine */
    --content-spacing: 5px;
    --background-img: url('../images/image-1ovshh19.png');
    --text-color: #E0F2E9;
    --link-color: var(--accent-1);
    --border: 1px solid #1C3B2A;
}

body {
    font-family: 'FreePixel', sans-serif;
    background-color:var(--background);
    color:var(--text-color);
    margin: 0;
    padding: 0;
}
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2em;
}
.post-banner {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    display: none;
}
.back-btn, .footer a {
    display: inline-block;
    margin-top: 2em;
    text-decoration: none;
    color:var(--text-color);
    font-weight: bold;
}
.footer {
    text-align: center;
    margin-top: 4em;
}
.post-content h1, h2, h3 {
    font-family: 'Russo One', sans-serif;
}

.post-content img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 0.2em 0;
}

.post-content img:hover{
    transform: scale(1.05);
    filter: brightness(1.1);

}
.post-content {
    margin-top: 2em;
    line-height: 1.6;
}
