	html, body {
	    width: 100%;
	    height: 100%;
	}

	body {
	    width: 100%;
	    height: 100%;
	}

	#content {
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    gap: 10px;
	    width: 100%;
	    padding: 1rem 0;
	}

	.box {
	    background-color: white;
	    color: white;
	    border-radius: 15px;
	    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
	    width: 100%;
	    opacity: 0;
	    transform: translateY(50px);
	    animation: infoSlideIn 0.6s ease-out forwards;
	    display: grid;
	    text-align: center;
	    border-color: dimgray;
	    border-width: 1px;
	}

	    .box:nth-child(1) {
		animation-delay: 0.5s;
	    }

	    .box:nth-child(2) {
		animation-delay: 3.0s;
	    }

	    .box:nth-child(3) {
		animation-delay: 6.0s;
	    }

	@keyframes infoSlideIn {
	    to {
		opacity: 1;
		transform: translateY(0);
	    }
	}

	.box-header {
	    background: linear-gradient(to right, #0d47a1, #1976d2);
	    padding: 10px;
	    color: white;
	    position: relative;
	    clip-path: ellipse(150% 100% at 50% 0%);
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    border-radius: 14px 14px 0px 0px;
	}

	    .box-header h2 {
		margin: 0;
		font-size: 2rem;
	    }

	.box-content {
	    flex: 1;
	    padding: 20px;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: flex-start;
	    overflow-y: auto;
	}

	.images-container {
	    display: flex;
	    justify-content: center;
	    flex-wrap: wrap;
	    gap: 4rem;
	    margin-top: 1rem;
	}

	    .images-container img {
		border-radius: 6px;
		object-fit: contain;
	    }

	.button-wrapper {
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    width: 100%;
	    animation: infoSlideIn 0.6s ease-out forwards;
#	    animation-delay: 9.0s;
	    opacity: 0;
	    transform: translateY(50px);
	}

	.start_button {
		background: linear-gradient(to right, magenta, purple);
		color: white;
		border: none;
		padding: 0.8rem 2rem;
		font-size: 1.2rem;
		font-weight: bold;
		border-radius: 15px;B
		cursor: pointer;
		transition: background-color 0.3s ease;

		z-index: 2000;
		margin: 0px auto;
		position: sticky;
		top: 40px;
		display: none;
	}
	#app {
		display: none;
	}
	#preloader {
		display: none;
	}

	#progress-div {
		display: none;
	}

	.start_button:hover {
		background-color: #1565c0;
	    }

	.centerInfo {
	    position: absolute;
	    left: 50%;
	    top: 50%;
	    -webkit-transform: translate(-50%, -50%);
	    transform: translate(-50%, -50%);
	    font-family: 'MyCustomFont';
	}
	@font-face {
	    font-family: 'MyCustomFont';
	    src: url('Fonts/Montserrat-Regular.ttf') format('truetype');
	}

	.box.no-title {
	    background: linear-gradient(to right, #0d47a1, #1976d2);
	    color: white;
	}

	    .box.no-title .box-content p {
		color: white;
	    }

	    .box.no-title .images-container img {
		box-shadow: 0 2px 4px rgba(255,255,255,0.2);
	    }
