

#header
{
	/* background-attachment:fixed; */
	user-select: none;
	background-repeat: no-repeat;
	background-position:center;
	background-size:100% 100%;
}

/* ::-webkit-scrollbar {
    width: 1vw;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px black; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #0084b5; 
    border-radius: 10px;
} */
.levels
{
	text-align: center;
    font-size: 2.5vw;
	color:rgb(10, 10, 10);
	font-weight: bold;
	border: 2px solid black;
	height: 20vh;

	display: flex;
	justify-content: center;
	align-items: center;

    border: 0.22vw solid black;
    background-color: aliceblue;
    box-shadow: 5px 6px 2px black;
}


#buttonDiv{
	/* margin-top: 10vh; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px 20px 0 0;
}
#playPauseDiv{
	font-size: 9vw;
	margin-top: -15vh;
	border-radius: 50%;
	color: rgb(253, 188, 64);
	background-color: white;
}
.custom-box {
	width: 300px;
	height: 200px;
	background-color: #e5f0a5; /* Blue background */
	border-radius: 0 30px 0 0; /* Rounded top-right corner */
	position: relative;
	color: black;
	font-family: Arial, sans-serif;
	padding: 20px;
	margin: 5px;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); /* Shadow effect */
	/* border: 2px solid black; */
}

.icon-container{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
}

#msg1Span,#msg2Span,#msg3Span{
	font-size: 4vw;
	color: #ee345d;;
	font-weight: bold;
	text-shadow: 0px 4px 15px rgb(253 224 64);
}

#modulePage {
  display: flex;
  justify-content: center;  /* Center horizontally */
  gap: 100px;                /* Space between divs */
  flex-wrap: wrap;          /* Stack on smaller screens */
  padding: 20px;
}

.card {
  flex: 0 0 30%; /* Around 4/12 = 33% */
  max-width: 30%;
  background: lightblue;
  padding: 20px;
  box-sizing: border-box;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 150px;
  border: 1px solid black;

}

#breadcrumbDiv{
	margin-top: 20vh;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 5px;
  font-family: Arial, sans-serif;
}

.crumb {
  cursor: pointer;
  color: #007bff;
}

.crumb::after {
  content: ">";
  margin-left: 8px;
  color: gray;
}

.crumb:last-child::after {
  content: "";
}

.crumb:hover {
  text-decoration: underline;
}

.menu, .submenu {
  margin: 15px 0;
}

.menu button, .submenu button {
  margin-right: 10px;
  padding: 8px 15px;
  cursor: pointer;
}

.page {
  display: none;
  padding: 20px;
  /* border: 1px solid #ddd; */
  margin-top: 10px;
  border-radius: 5px;
}

.page.active {
  display: block;
}



/* Stack on mobile */
@media (max-width: 768px) {
  .card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
    #home {
        font-size: 6vw;
    }
	#backDiv, #nextDiv{
		font-size: 8vw;
	}
	#playPauseDiv {
		margin-top: -7vh;
	}
	#textDiv{
		font-size: 20vw;
	}
}

@media (min-width: 576px) {
    #home {
        font-size: 4vw;
    }
	#backDiv, #nextDiv{
		font-size: 6vw;
	}
	#playPauseDiv {
		margin-top: -9vh;
	}
	#textDiv{
		font-size: 15vw;
	}
}


@media (min-width: 768px) {
    #home {
        font-size: 4vw;
    }
	#backDiv, #nextDiv{
		font-size: 4vw;
	}
	#playPauseDiv {
		margin-top: -10vh;
	}
	#textDiv{
		font-size: 15vw;
	}
}

@media (min-width: 992px) {
    #home {
        font-size: 3vw;
    }
	#backDiv, #nextDiv{
		font-size: 4vw;
	}
	#playPauseDiv {
		margin-top: -12vh;
	}
}

#textDiv{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}


.toBottom{
	position: fixed;
	bottom: 0;
}



/* #playPauseDiv {
	--fa-primary-color:  yellow;  
	--fa-secondary-color:white;
} */

#StoryPage{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#levelPage {
	display: flex;
	gap: 20px;
	justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.top-right-text {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #3ce756; /* Red background for top-right corner */
	color: white;
	padding: 5px 15px;
	border-radius: 0 30px 0 50px; 
	font-size: 20px;
	font-weight: bold;
}

.bottom-left-text {
	position: absolute;
	bottom: 10px;
	left: 15px;
	font-size: 25px;
	font-weight: bold;
}

button {
	margin-top: 20px;
	padding: 8px 12px;
	font-size: 16px;
	cursor: pointer;
}

.texts{
	font-size: 1.2vw;
	color: white;

}

#header{
	position: fixed;
	top: 0;
	height: 20vh;
	z-index: 1;
	width: 100%;
    object-fit: contain;
    object-position: center;
}
.banner {
	width: 100%;  /* Ensures full width */
	object-fit: contain; /* Ensures full image is displayed without cropping */
	object-position: center; /* Centers the image */
	display: block;
	position: fixed;
	top: 0;
	z-index: 1;
  }

/* @media screen and (max-width: 480px) {
	p{
		font-size: 15px; 
	  }
	.txtClass
	{
		font-size: 4vw;
	}
	.imgBorderClass {
		height: 50vh;
		border-radius: 3%;
	}
}
footer .text {
	font-size: 14px;
} */