 /* General body styling for a retro look */
        body {
            background-image: url('https://dl.glitter-graphics.com/pub/2924/2924647ky1z8amdx0.gif');
            background-repeat: repeat;
    
            background-color: #0A2B66;
            font-family: 'Times New Roman', Times, serif;
            color: #FFFFFF;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
        }

        /* Custom scrollbar styling for a unique visual flair */
        .custom-scrollbar::-webkit-scrollbar {
            width: 8px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: #051833;
            border: 1px solid #0A2B66;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background-color: #1042AD;
            border-radius: 0;
            border: 1px solid #1042AD;
        }

        /* CSS animation for a pulsing effect on certain elements */
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
        }
        
        /* Back button styling, fixed to the top-left of the screen */
        .back-button {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            padding: 10px 10px;
            background-color: #333;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-family: sans-serif;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .back-button:hover {
            background-color: #555;
        }

        /* Main content container with responsive updates */
        .main-content {
           
            width: 90%;
            max-width: 1000px; /* Prevents it from getting too wide on large screens */
            padding: 0 10px; /* Adds padding on smaller screens */
        }

        /* Flexbox for the banner wall, allowing banners to wrap to new lines */
        .banner-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px;
        }

        /* Banner image styling with responsive adjustments */
        .banner {
            width: 250px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Flexbox for the button wall, allowing buttons to wrap */
        .button-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 15px;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        /* Button styling with responsive adjustments */
        .button {
            width: 100px;
            height: 35px;
            font-size: 14px;
            text-align: center;
            line-height: 35px;
            color: #fff;
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #0056b3;
        }
        
        /* Media query for small screens (e.g., mobile devices) */
        @media (max-width: 600px) {
            .main-content {
                padding: 0 5px; /* Adjust padding for very small screens */
            }

            .banner {
                width: 100%; /* Banners will take up the full width, stacking vertically */
            }
            
            .button {
                width: 45%; /* Buttons will take up roughly half the width, two per row */
            }
        }
        
        @font-face {
  font-family: 'Press Start 2P';
  src: url('/IntraNet.woff2') format('truetype');
}