body {
                margin: 0;
                padding: 0;
                height: 100vh;
                background-image: url('kristinkid.jpg');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: fixed;
                overflow: hidden;
            }
            .hamburger-icon {
                color: white;
                font-size: 30px;
                cursor: pointer;
                position: fixed;
                top: 20px;
                left: 20px;
                z-index: 1;
            }
            .home-icon {
                color: white;
                font-size: 30px;
                cursor: pointer;
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 1;
            }
            a.home-icon {
                text-decoration: none;
            }
            h1 {
                font-family: 'Playfair Display', serif;
                font-size: 40pt;
                font-weight: 700;
                margin: 0;
                color: white;
                position: fixed;
                top: 20px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 1;
            }
            .h2 {
                font-family: 'Playfair Display', serif;
                font-size: 20pt;
                font-weight: 700;
                position: fixed;
                bottom: 80px;
                right: 100px;
                z-index: 1;
                color: white; 
            }
            .h2 a {
                text-decoration: none;
                color: white;
            }
            .h2 a:hover {
                transition: 0.3s;
                text-decoration: underline;
                color: paleturquoise;
            }
           .h3 {
                font-family: 'Playfair Display', serif;
                font-size: 26pt;
                font-weight: 700;
                position: fixed;
                top: 25%;
                left: 20px;
                z-index: 1;
                color: white;
                margin-left: 50pt;
            }
            .h4 {
                font-family: 'Playfair Display', serif;
                font-size: 14pt;
                font-weight: 700;
                position: fixed;
                top: 33%;
                left: 20px;
                z-index: 1;
                color: white;
                margin-left: 50pt;
                margin-right: 250pt;
            }
            .sidenav {
                font-family: 'Sedan', serif;
                height: 100%;
                width: 0;
                position: fixed;
                z-index: 2;
                top: 0;
                left: 0;
                background-color: black;
                overflow-x: hidden;
                transition: 0.5s;
                padding-top: 60px;
            }
            .sidenav a {
                padding: 8px 8px 8px 32px;
                text-decoration: none;
                font-size: 20px;
                color: gray;
                display: block;
                transition: 0.3s;
            }
            .sidenav a:hover {
                color: white;
            }
            .sidenav .closebtn {
                position: absolute;
                top: 0;
                right: 25px;
                font-size: 36px;
                margin-left: 50px;
            }
            @media screen and (max-height: 450px) {
            .sidenav {
                padding-top: 15px;
            }
            .sidenav a {
                font-size: 18px;
            }
            }
            .image-container {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-gap: 30px;
                justify-items: center;
                align-items: center;                    
                margin-top: 40pt;
                padding: 150px;
            }
            .image-container a {
                display: inline-block;
                transition: all 0.3s ease;
            }
            .image-container a img {
                width: 300px;
                height: 200px;
                object-fit: cover;
                border-radius: 10px;
                transition: transform 0.3s ease;
            }

            .image-container a:hover img {
                filter: brightness(120%);
                box-shadow: 0 4px 20px paleturquoise;
                transform: scale(1.05);
            }