<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: 20px;
            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;
        }
        
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-trigger {
            cursor: pointer;
            color: #333;
            text-decoration: none;
        }
        
        .dropdown-trigger:hover {
            text-decoration: underline;
            opacity: 0.6;
            cursor: pointer;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            padding: 10px 0;
            min-width: 150px;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 8px 0;
            color: #333;
            text-decoration: none;
        }
        
        .dropdown-menu a:hover {
            text-decoration: underline;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        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;
        }

        /* Home page specific styles */
        .home-main {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: calc(50vh); /* viewport height minus nav/footer space */
        }

        .home-section {
            text-align: center;
        }

        .enter-link {
            font-size: 21px;
            display: inline-block;
            margin-top: 20px;
        }

        /* Make dropdowns work on touch devices */
        @media (hover: none) {
            .dropdown-menu {
                display: none;
            }
            
            .dropdown:focus-within .dropdown-menu {
                display: block;
            }
            
            .dropdown-trigger:focus + .dropdown-menu {
                display: block;
            }
        }

        /* Make the trigger focusable on touch devices */
        .dropdown-trigger {
            -webkit-tap-highlight-color: transparent;
        }

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