 /* 1. Reset defaults to prevent scrolling bugs */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 2. Make the parent cover the exact viewport size */
        .fullscreen-containerss {
            display: flex;
            justify-content: center; /* Horizontally center */
            align-items: center;     /* Vertically center */
            //min-height: 100vh;       /* Full height of the screen */
            width: 100%;             /* Full width of the screen */
            background-color: #f0f0f0;
            padding: 20px;           /* Prevents image from touching screen edges */
        }

        /* 3. Handle image responsiveness */
        .responsive-imagess {
            max-width: 80%;         /* Limits width to container size */
            //max-height: 80vh;        /* Limits height to prevent vertical overflow */
            height: auto;            /* Keeps original aspect ratio */
            width: auto;             /* Keeps original aspect ratio */
            display: block;          /* Removes default inline baseline gap */
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }


/* 2. Make the parent cover the exact viewport size */
        .fullscreen-containersss {
            display: flex;
            justify-content: center; /* Horizontally center */
            align-items: center;     /* Vertically center */
            //
            min-height: 100vh;       /* Full height of the screen */
            width: 100%;             /* Full width of the screen */
            background-color: #ffffff;
            padding: 1px;           /* Prevents image from touching screen edges */
            align-content: center;
            flex-wrap: wrap;
        }

        /* 3. Handle image responsiveness */
        .responsive-imagesss {
            max-width: 100%;         /* Limits width to container size */
            //
            max-height: 80vh;        /* Limits height to prevent vertical overflow */
            height: auto;            /* Keeps original aspect ratio */
            width: auto;             /* Keeps original aspect ratio */
            display: block;          /* Removes default inline baseline gap */
            //
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .responsive-imagessmatter {
            max-width: 70%;         /* Limits width to container size */
            //
            max-height: 80vh;        /* Limits height to prevent vertical overflow */
            height: auto;            /* Keeps original aspect ratio */
            width: auto;             /* Keeps original aspect ratio */
            display: block;          /* Removes default inline baseline gap */
            //
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
 .blink {
            animation: blinker 1.5s linear infinite;
            color: red;
            font-family: Arial, sans-serif;
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }

        .container {
            box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
            border: 1px solid rgba(0, 0, 0, .15);
            //background-color: #ffffff;
            border-radius: 4px;
            padding: 10px;
            margin: auto;
        }