@font-face {
    font-family: 'basiic';
    src: url('/fonts/basiic.ttf');
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    padding: 60px 20px;

    background-color: #9b5a24;
    background-image: url("https://sadhost.neocities.org/images/tiles/chess.gif");
    background-repeat: repeat;

    font-family: 'basiic', monospace;
    color: white;
}

.post-box {
    width: min(820px, 95%);
    min-height: 700px;
    margin: 0 auto;
    padding: 50px 65px;

    background: #151515;
    border: 8px solid #b41473;

    text-align: center;

    box-shadow:
        0 0 0 2px #fe4191,
        0 0 25px rgba(254, 65, 145, 0.45);
}

.post-box h1 {
    margin: 0 0 15px;
    color: #f08cbc;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.post-date {
    margin-bottom: 25px;
    color: #f08cbc;
    font-size: 1.5rem;
}

.divider {
    margin: 25px auto 35px;
    color: #f08cbc;
    font-size: 1.8rem;
    border-top: 2px dotted #b41473;
    line-height: 0;
}

.divider::before {
    content: "✦";
    background: #151515;
    padding: 0 20px;
}

.divider {
    color: transparent;
}

.post-box p {
    max-width: 620px;
    margin: 0 auto 32px;

    font-size: 1.3rem;
    line-height: 1.55;
    text-align: center;
}

.sparkles {
    color: #f08cbc;
    font-size: 1.8rem;
    margin: 35px 0;
    letter-spacing: 18px;
}

.post-image {
    display: block;
    max-width: 80%;
    margin: 30px auto;

    border: 3px solid #b41473;
}