body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    background-size: cover;
    font-family: monospace;
    color: white;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.header {
    width: 100%;
    height: 140px;
    background: url('/static/pixil-frame-0.png') center center no-repeat;
    background-size: cover;
    background-position: center 40%;
    border-bottom: 1px solid #ff6600;
    box-shadow: 0 0 15px #ff6600;
    position: relative;
}

.ascii-header {
        text-align: center;
        color: #ff6600;
        padding: 10px;
        margin: 0 auto;
}

.container {
    max-width: 1170px;
    width: 90%;
    margin: 0 auto;
/*    align-items: start;
    display: grid;
    grid-template-columns: 1fr 1fr;*/
    gap: 20px;
}

.post-full {
    max-height: none;
    overflow: visible;
}

.post-full img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    max-height: none;
}

.post-preview img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: cover;
    display: block;
    margin-top: 10px;
}

.post {
/*    background: #0d0d0d;
    border: 1px solid #ff6600;
    padding: 15px;
    box-shadow:
        0 0 2px #ff6600,
        0 0 5px #ff6600,
        0 0 10px #ff3300;
    display: flex;
    flex-direction: column;
    overflow: hidden;*/
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.post img {
    max-height: 250px;
}

.post p {
    margin: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 900px
}

.post:hover {
    box-shadow:
        0 0 5px #ff9900,
        0 0 10px #ff6600,
        0 0 20px #ff3300;
}

.post h3 {
    margin: 0 0 10px 0;
    color: #ff9900;
}

a {
    color: #ff6600;
    text-decoration: none;
}

.post-meta {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 12px;
    text-align: right;
}

a:hover {
    text-shadow: 0 0 3px #ff6600;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    .form-box {
        margin: 20px auto;
        padding: 10px;
    }

    .form-box h2 {
        font-size: 18px;
    }
}
