        
        body {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            letter-spacing: 0.01cm;
            margin: 0;
            padding: 0;
            background-color: #6d1b7bc8;
            text-align: center;
            color: rgb(222, 222, 223);
            font-weight: 100;
        }

        h1 {
            font-family: fantasy;
        }

        .age-gate {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(50, 17, 59, 0.783);
            color: rgb(235, 235, 235);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .content {
            display: none;
        }

        .hidden {
            display: none;
        }

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            background: url('ef9a765b-dc81-4d88-9476-47f962957a66.webp') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-transform: uppercase;
            font-size: 3rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }

        .arrow {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            cursor: pointer;
            color: white;
            animation: bounce 1.5s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            text-align: left;
            padding: 20px;
        }

        .gallery {
            width: 100%;
        }

        .gallery img {
            width: 100%;
            height: 250px;
            max-width: 350px;
            margin: 10px;
            border-radius: 10px;
        }

        footer {
            background-color: #201a21;
            color: white;
            padding: 10px;
            margin-top: 20px;
        }



        .contact {
            background-color: #3b243d;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }




        