	@font-face {
	   font-family: 'Amiri';
	   src: url('https://ira.moe/fonts/Amiri-Regular.ttf') format('truetype');
	   font-weight: 400;
	   font-style: normal;
	   font-display: swap;
	}

        @font-face {
           font-family: 'Amiri';
           src: url('https://ira.moe/fonts/Amiri-Bold.ttf') format('truetype');
           font-weight: 700;
           font-style: normal;
           font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #f5f5dc;
            color: #333;
            font-family: 'Amiri', serif;
            font-size: 1.2rem;
	    line-height: 2.2rem;
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
	    font-smooth: never;
        }
        
        header {
            border: 2px dashed #666;
            padding: 20px;
            margin-bottom: 30px;
            background: #fff;
        }
        
        h1 {
            font-size: 2em;
            margin-bottom: 10px;
            color: #d35400;
        }
        
        nav {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #ccc;
        }
        
        nav a {
            color: #2980b9;
            text-decoration: none;
            margin-right: 15px;
            padding: 3px 8px;
            border: 1px solid transparent;
        }
        
        nav a:hover {
            background: #ffffcc;
            border: 1px dashed #2980b9;
        }
        
        main {
            background: #fff;
            border: 2px solid #666;
            padding: 30px;
            margin-bottom: 20px;
        }
        
        section {
            margin-bottom: 40px;
        }
        
        h2 {
            color: #d35400;
            margin-bottom: 15px;
            font-size: 1.5em;
            border-bottom: 2px dotted #ccc;
            padding-bottom: 5px;
        }
        
        .blog-post {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #ccc;
        }
        
        .blog-post:last-child {
            border-bottom: none;
        }
        
        .blog-post h3 {
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .blog-date {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 10px;
        }
        
        ul {
            list-style-position: inside;
            margin-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        a {
            color: #2980b9;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
            font-size: 0.9em;
        }
        
        .button {
            display: inline-block;
            padding: 8px 15px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border: 2px solid #2980b9;
            margin-top: 10px;
        }
        
        .button:hover {
            background: #2980b9;
        }
        
        hr {
            border: none;
            border-top: 1px dashed #ccc;
            margin: 20px 0;
        }
        
        .divider {
            text-align: center;
            margin: 30px 0;
            color: #95a5a6;
        }
