/* Your CSS Styles Go Here */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            position: relative;
        }

        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('files/Screenshot-1.png');
            background-size: cover;
            filter: blur(10px);
            z-index: -1;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha value for the overlay */
            z-index: -1;
        }

        .container {
		 background-color: white;
            position: relative;
            max-width: 45%;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
            color: #333; /* Text color */
        }

        .container {
    position: relative;
    max-width: 30%; /* Default for desktop */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: #333; /* Text color */
}

@media only screen and (max-width: 768px) {
    .container {
        max-width: 100%; /* Adjust for mobile */
    }
}

        h1 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        p {
            font-size: 1em;
            margin-bottom: 15px;
            color: #666;
        }

        .red-text {
            color: red;
            font-size: 16px;
        }

        .product-name {
            background-color: black;
            color: white;
            font-size: 1em;
            padding: 10px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .product-image {
            border-radius: 8px;
            max-width: 50%;
            height: auto;
            margin-top: 20px;
        }

        .availability-text {
            font-size: 15px;
            margin-top: 20px;
            color: #666;
        }

        .pulse-image {
            display: inline-block;
            margin-top: 20px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
            max-width: 100%;
        }

        .pulse-image:hover {
            animation: twinkling 1s infinite;
        }

        @keyframes twinkling {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* Footer styles */
        footer {
            padding: 10px 0;
            background-color: #333;
            color: #fff;
            text-align: center;
            width: 100%;
            position: fixed;
            bottom: 0;
            z-index: 999;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

        /* Responsive layout */
        @media only screen and (max-width: 768px) {
            h1 {
                font-size: 1.2em;
            }
            p {
                font-size: 0.9em;
            }
            .red-text {
                font-size: 16px;
            }
            .product-name {
                font-size: 0.9em;
            }
            .availability-text {
                font-size: 15px;
            }
        }

        @media only screen and (max-width: 480px) {
            h1 {
                font-size: 1.2em;
            }
            p {
                font-size: 0.8em;
            }
            .red-text {
                font-size: 16px;
            }
            .product-name {
                font-size: 0.8em;
            }
            .availability-text {
                font-size: 15px;
            }
        }