/* Two column stylesheet */

body {
	background-color: rgb(235, 235, 235);
	}	

.container {
	max-width: 950px; /* Or your desired maximum width */
	margin: auto;
	padding: 5px, 20px, 20px, 20px;
	}

header {
    text-align: center;
	}

h1 {
	font-size: 1.6em;
	text-align: center;
	}

h2 {
	font-size: 1.2em;
	text-align: center;
	}
	
h3 {
	font-size: 1em;
	line-height: .8em;
	margin-bottom: -.6em;
	font-weight: bold;
	font-style: italic;
	text-align: center;
	color: #0000FF;
	}

h4 {
	font-size: .8em;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: black;
	}

.map-caption {
	font-size: .8em;
	margin-top: .2em;
	margin-bottom: .5em;
	text-align: center;
	font-weight: bold;
	}

.style1 {
	color: #9b9898;
	font-size: small;
	}

.style2 {
	color: #13157c;
	font-size: 1.2em;
	text-align: center;
	}

.style4 {
	font-size: 1.2em;
	color: #180daf;
	font-weight: bold;
	text-align: center;
	}

.style5 {
	color: #FF0000;
	font-weight: bold;
	}

ul.a {list-style-type: none;
    padding: 0px 10px 0em 20px;
    margin-top: 5px;
    margin-bottom: 1em;
    }

.video-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  	}	

.two-column {
	display: grid;
	gap: 30px;
	grid-template-columns: 2fr 1fr;
	align-items: start; /* keeps tops aligned */
}

.two-map {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
	align-items: start; /* keeps tops aligned */
}


/* Stack text and images on small screens */
@media (max-width: 600px) {
 .two-column {
 grid-template-columns: 1fr;
 }

 .two-column > div:last-child {
 justify-self: center; /* centers the picture column */
 text-align: center; /* optional: centers inline content like links/images */
 }
}

/* Make the images responsive */
.two-column img {
 max-width: 100%;
 height: auto;
 display: block;
}

.banner-img {
 display: block;
 width: 100%;
 height: auto;
}