.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10; 
  }
  
  .modal-content {
	background: #fff;
	padding: 20px;
	border-radius: 5px;
	width: 80%;
	max-width: 500px;
	position: relative;
	color: #333; 
	font-size: 14px; 
  }
  
  .close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	color: #333; 
  }
  .codeutsava_game-canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; 
}
  
#messageContainer {
    position: fixed; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px; 
    text-align: center;
    z-index: 10; 
    display: none; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

#messageText {
    margin: 0;
    margin-bottom: 10px;
}

#nextButton {
    margin-top: 10px; 
    padding: 8px 12px;
    background-color: #f1c40f;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
}


