<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            color: #333;
            background-color: #FBFBFB;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            padding-bottom: 20px;
/*            border-bottom: 1px solid #ddd;*/
        }
        
        .nav-left .logo {
            height: 30px;
            width: auto;
        }
        
        .nav-left .logo-text {
            font-size: 40px;
            font-weight: normal;
        }

        .nav-left .logo-link {
            text-decoration: none;
            color: inherit;
        }

        .nav-left .logo-link:hover {
            opacity: 1;
        }
        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        nav a {
            color: #333;
            text-decoration: none;
        }
        
        nav a:hover {
            text-decoration: underline;
        }
        
        
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: normal;
        }
        
        h2 {
            font-size: 32px;
            margin-top: 60px;
            margin-bottom: 30px;
            font-weight: normal;
        }
        
        section:first-of-type h2 {
            margin-top: 40px;
        }
        
        h3 {
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 10px;
            font-weight: normal;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        section#about p {
            margin-bottom: 12px;
        }
        
        section#about p:last-child {
            margin-bottom: 15px;
        }

        section{
            border-bottom: 1px solid #ddd;
        }

        section#home{
            border-bottom: none;
        }
        
        a {
            color: #333;
            text-decoration: underline;
        }
        
        a:hover {
            opacity: 0.6;
        }
        a:has(img):hover {
            opacity: 1;
        }
        
        .image-item, .image-item, .image-item {
            margin-bottom: 50px;
        }
        
        .image-item img {
            max-width: 300px;
            height: auto;
            margin-bottom: 15px;
            display: inline-block;
            user-select: none;
            -webkit-user-select: none;
            pointer-events: auto;
        }
        .image-item a img {
            cursor: pointer;
        }
        
        .image-item h3 {
            margin-top: 0;
            margin-bottom: 8px;
        }
        
        .image-item .date {
            margin-bottom: 10px;
        }
        
        .image-item p:last-child {
            margin-bottom: 0;
        }
        
        .date {
            color: #666;
            font-size: 16px;
            margin-top: -8px;
        }

        footer {
            margin-top: 80px;
            padding-top: 20px;
/*            border-top: 1px solid #ddd;*/
            font-size: 14px;
            color: #666;
        }
    </style>