	h6 {
    	font-size: 1.8rem;
    	line-height: 1.6;
   	 	letter-spacing: 0;
		color: royalblue;
	}
		
	.threeColumns {
		display: flex;
		justify-content: space-between;
		/*background-color:white;*/
	}


	.left-column {
		width: 20%;
		/*min-height: 600px;  Set a fixed height for alignment */
		display: flex;
		flex-direction: column; /* Stack elements vertically */
		align-items: flex-start; /* Align items to the left */
		padding-left: 0px;
		text-align: left; /* Left-align the image */
		/*background-color: plum;*/
	}
		
	.center-column {
		width: 60%;
		margin: 0 auto; /* This will keep the center column centered */
		display: flex; /* Enable Flexbox */
		flex-direction: column; /* Stack elements vertically */
    	justify-content: center; /* Center horizontally */
    	align-items: center; /* Center vertically (if needed) */
		/*min-height: 600px;*/
	}
		
	.right-column {
		width: 20%;
		/*min-height: 600px;  Set a fixed height for alignment */
		display: flex;
		flex-direction: column; /* Stack elements vertically */
		align-items: flex-end; /* Align items to the left */
		padding-left: 0px;
		text-align: right; /* right-align the image */
		/*background-color: plum;*/
	}

	.ad-caption-game {
		margin-bottom: 0; /* Remove any default margins */
		margin-left:5px;
		text-align: left; /* Ensure text is left-aligned */
		width: 100%; /* Ensure it takes full width */
	}

	#rotating-image-container { width:160px; height:600px; }

	@media (max-width: 1300px) { /*1300 or less*/
		.right-column{
			display: none; /* Hide left and right columns */
		}

		.center-column {
			width: 80%; /* Make the center column take up 100% */
			margin-left:auto;
			margin-right:auto;
		}
	}	
	
	@media (max-width: 1080px) { /*1080 or less*/
		.left-column, .right-column{
			display: none; /* Hide left and right columns */
		}

		.center-column {
			width: 90%; /* Make the center column take up 100% */
			margin-left:auto;
			margin-right:auto;
		}
		
		.fullscreen-view {
			display:none;
		}
		
		
	}	

	