
        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; /* Changed to white */
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
        }

         .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: 2;
            border: 1px solid #1042AD;
        }

        .section-box {
            background-color: #1555C0;
            border: 4px solid #051833;
            text-align: center;
            width: 100%;
            max-width: 400px;
            height: 400px;
            display: flex;
            flex-direction: column;
            padding: 1rem;
        }

        .section-content {
            flex-grow: 1;
            overflow-y: scroll;
            border: 2px solid #051833;
            padding: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .section-content img {
            width: 100%;
            height: auto;
            margin-bottom: 0.5rem;
            display: block;
        }

        @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 {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  padding: 10px 15px;
  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;
}

.image-container {
    position: relative;
    display: inline-block; /* Or block, depending on your layout preference */
    margin-bottom: 0.5rem; /* Maintain spacing between images */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Initially transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Darken on hover */
    opacity: 1; /* Show overlay on hover */
}

.image-subtitle {
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

@font-face {
  font-family: 'Press Start 2P';
  src: url('/IntraNet.woff2') format('truetype');
}
