
body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background-color: #333;
	background-image: url('/img/tracking.jpg'); /* Replace with your image */
	background-size: cover;  /* Ensures the image covers the entire viewport */
	background-position: center; /* Centers the image */
	background-repeat: no-repeat; /* Prevents tiling */
	height: 100vh; /* Ensures full viewport height */
	margin: 0;
}
body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(17, 17, 17, 0.85); /* Adjust opacity here (0 = fully transparent, 1 = fully opaque) */
	z-index: -1;
}

img {
	display: block;
	width: 30%;
	max-width: 100%;
	max-height: 300px;
	transition: width 0.25s ease-in-out;
	margin: 0px auto;
}
.glowing-image {
	filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
	display: block; /* Ensures the image takes up the full width */
    margin: 0 auto; /* Centers the image horizontally */
}

@media(max-width: 768px) {
	img {
		width: 70%;
	}
}

@media(max-width: 1200px) {
	img {
		width: 45%;
	}
}

.flex-stack {
	flex-direction: column;
	height: 100%;
}

.module1 {
	justify-content: center;
	align-items: center;
	margin: 1em;
}

.module2 {
	width: 50%;
	margin: 20px auto;
}

        .content-container {
            text-align: center; /* Centers the content horizontally */
        }
        .glowing-image {
            display: block; /* Ensures the image takes up the full width */
            margin: 0 auto; /* Centers the image horizontally */
			animation: hoverAnimation 6s ease-in-out infinite; /* Adds the hover animation */
        }
        p {
            margin-top: 1rem; /* Adds spacing between the image and text */
			color: #fff;
        }

        .roboto-condensed-200 {
        font-family: "Roboto Condensed", sans-serif;
        font-optical-sizing: auto;
        font-weight: 200;
        font-style: normal;
        }
		
		/* Keyframes for the hovering animation */
        @keyframes hoverAnimation {
            0% {
                transform: translateY(0); /* Start at the original position */
            }
			50% {
                transform: translateY(-8px); /* Move up slightly */
            }
            100% {
                transform: translateY(0); /* Return to the original position */
            }
        }