
body, html {
    height: 100%;
	margin: 0;
	background-image: url('../assets/images/bg.jpg');	
}

.scroll-container {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
	position: absolute;
	top: 200;
	left: 0;
	height: 100%;
	width: 100%;
}

.scroll-container img {
	height: 1440px;
	height: 100%;
	aspect-ratio: 9 / 16;
	animation: scrollImage 80s linear infinite;
}

@keyframes scrollImage {
	0% {
	transform: translateX(0%);
	}
	100% {
	transform: translateX(-800%);
	}
}


@font-face {
    font-family: 'Gundam Font'; /* Name to use in your CSS */
    src: url('../assets/fonts/font.otf') format('opentype');
}
.content-container-bg {
opacity: 0.6;

}
.content-container {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	justify-content: top;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding: 30px;
	background-color: rgba(0, 0, 0, 0.6); 
}

#logo {
	max-width: 250px;
}

.central-text {
	color: white;
	font-size: 2.5rem;
	margin-bottom: 30px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.download-link {
	background-color: #007BFF;
	color: white;
	padding: 15px 25px;
	font-size: 1.3rem;
	border-radius: 50px;
	transition: background-color 0.3s ease;
	text-decoration: none;
}

.download-link:hover {
	background-color: #0056b3;
}

body {
    font-family: 'Gundam Font', sans-serif; /* Apply the custom font */
}
.contentdiv {


  font-family:    Arial, Helvetica, sans-serif;
}