
        /* Navigation Bar */
        nav {
            width: 100%;
            background-color: #4d2e95;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 8px 0;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            text-align: center;
        }

        nav a:hover {
            background-color: #9bc444;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            cursor: url('https://cur.cursors-4u.net/nature/nat-6/nat547.cur'), auto;
            justify-content: flex-start;
            align-items: center;
            background: url('https://mkadolls.com/images/side1.png') left top repeat-y, 
                        url('https://mkadolls.com/images/side2.png') right top repeat-y, 
                        url('https://mkadolls.com/dolls/dollbk2.JPG') center center no-repeat;
            background-size: 150px auto, 150px auto, cover;
        }

        .content-wrapper {
            width: 93%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
            background-color: transparent;
        }

        header {
            background-color: rgba(255, 98, 161, 0.9);
            color: white;
            padding: 0.5rem;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 100%;
        }

header img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
        marquee {
            font-size: 1rem;
            color: #fff;
            background: linear-gradient(to right, #9bc444, #df5981, #4d2e95);
            padding: 5px;
            border-radius: 10px;
            font-weight: bold;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
            margin: 10px 0;
        }

        h2, h3 {
            text-shadow: 2px 2px 10px #FF62A1;
        }

        .container {
            background-color: white;
            padding: 1rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            margin-top: 10px;
        }

        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 10px 0;
            max-width: 100%;
            justify-content: center;
            align-items: center;
            white-space: nowrap;
            scroll-behavior: smooth;
        }

        .gallery-item {
            flex: 0 0 auto;
            width: 160px;
            text-align: center;
            overflow: visible;
        }

        .gallery-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    transition: transform 0.5s ease-in-out;
    object-fit: cover;
}

.gallery-item img:hover {
    opacity: 0.5; /* Reduces opacity to make image darker */
    transition: opacity 0.3s ease-in-out;
}





        .gallery-item p {
            margin-top: 5px;
            font-size: 0.9rem;
            font-weight: bold;
            color: #df5981;
        }

        .copyright {
            text-align: center;
            padding: 5px;
            font-size: 0.9rem;
            color: #fff;
            background: #4d2e95;
            width: 100%;
            position: relative;
            margin-top: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 20px;
            flex-direction: column;
        }

        .instagram-links {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
        }

        .instagram-links a {
            text-decoration: none;
            color: #fff;
            font-size: 1.5rem;
            width: 30px;
            height: 30px;
            object-fit: contain;
        }

        .instagram-links a:hover {
            color: #df5981;
        }

        .welcome {
            text-align: center;
            margin-bottom: 20px;
        }

        .welcome h2 {
            font-size: 1.5rem;
            text-shadow: 2px 2px 10px #FF62A1;
        }

        .welcome p {
            font-size: 1rem;
            font-weight: bold;
            color: #df5981;
        }
          .go-back-container {
            text-align: center;
            margin-top: 20px;
        }

        .go-back-button {
            background-color: #9bc444;
            color: white;
            padding: 10px 20px;
            font-size: 1.2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .go-back-button:hover {
            background-color: #df5981;
        }

        @media (max-width: 768px) {
            header img {
                width: 100% !important;
                height: auto;
            }

            .gallery {
                gap: 10px;
                padding: 10px 0;
            }

            .gallery-item {
                width: 150px;
            }

         
            .instagram-links a {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }

            .welcome h2 {
                font-size: 1rem;
            }

            .welcome p {
                font-size: 0.8rem;
            }

            .copyright img {
                width: 80% !important;
                height: auto;
            }
    .big-mobile2 {
        max-width: 90% !important;
        height: auto !important;
    }
