    <style>
        body {
            font-family: 'Urbanist', sans-serif;
            margin: 0;
            padding: 0;
        }

        h1, h2, h4 {
            font-family: 'Instrument Serif';
            font-weight: 800;
        }
    h1{font-size:10em}
        p {
            font-weight: 400;
        }
        .menu-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
        }
        .overlay {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            display: none;
        }
        .overlay.open {
            display: flex;
        }
        .overlay ul {
            list-style: none;
            padding: 0;
        }
        .overlay ul li a {
            color: white;
            font-size: 24px;
            text-decoration: none;
        }
        header {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .header-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
        }
#about, #games {padding-top:2em;}

        #about img {
            max-width: 100%;
            border-radius: 10px;
        }
        #games img {
            
            max-width: 100%;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        footer {
            background: #222;
            color: white;
            padding: 20px 0;
        }
    </style>