        html, body {
            cursor: url("cursor.ico"), default;
        }

                @font-face {
            font-family: DOS;
            src: url(https://file.garden/aBb6prPw8QkQxICV/website/fonts/Web437_DOS-V_re_ANK24.woff);
        }
h2, h1 {
                font-family: DOS, monospace;
}
h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}


        .post-title {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
                font-family: "Verdana", monospace;

            text-align: center;
        }

        .post-content {
            font-size: 16px;
            line-height: 1.2;
            color: #000;
            text-align: left;
        }
.post-content p {
    margin-bottom: 8px;
    margin-top: 8px;

}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Verdana", sans-serif;
            font-style: normal;
            font-weight: thin;
            background-image: 
                linear-gradient(45deg, #ffdede 25%, transparent 25%),
                linear-gradient(-45deg, #ffdede 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #ffdede 75%),
                linear-gradient(-45deg, transparent 75%, #ffdede 75%);
            background-size: 120px 120px;
            background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
            animation: moveBackground 5s linear infinite;
        }

        @keyframes moveBackground {
            0% {
                background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
            }
            100% {
                background-position: 120px -120px, 120px -60px, 180px -180px, 60px -120px;
            }
        }


        .container {
            max-width: 800px;
            margin: 0 auto;
            background-color: #ffdede;
border-left: 3px dashed #d66363;
border-right: 3px dashed #d66363;

            padding: 40px 20px;
            min-height: 100vh;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .logo {
            max-width: 400px;
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        .nav-link {
  display: block;
            color: #d66363;
            font-size: 14px;
            margin-top: 10px;
  text-decoration: underline;
  text-align: center;
  margin-bottom: 30px;
    font-weight: bold;
        }


        .blog-post {
            padding: 40px;
            margin-bottom: 40px;
        }

        .blog-post img {
            object-fit: contain;
            width: 100%;

        }

        i {
            color: #d66363;
        }

        .post-date {
            text-align: center;
            font-size: 14px;
            color: #d66363;
            margin-top: 20px;

        }

        @media (max-width: 768px) {
            .blog-post {
                padding: 30px 20px;
            }

            .post-title {
                font-size: 22px;
            }

            .post-content {
                font-size: 13px;
            }
        }
