/* Grid with one row and two columns stylesheet */

body {
	background-color: rgb(235, 235, 235);
	}	

.container {
	max-width: 970px; 
	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;;
	}

.style5 {
	color: #FF0000;
	font-weight: bold;
	text-align: center;
	}

.grid-container {
  	display: grid;
  	grid-template-rows: 257px;
	grid-template-columns: 498px 402px; 
	width: 100%;
	max-width: 900px;
	margin-inline: auto;
	gap: 1px; 
	border: 1px double white;
 	}

 .column-one {
  	background-color: rgb(235, 235, 235);
  	padding: 5px;
	border-left: 1px double black;
	border-right: 1px solid black;
  	border-top: 1px solid black;
	border-bottom: 1px solid black;
	font-size: .9em;
  	}
.column-two {
  	background-color: white; 
  	align-self: center;
  	border-left: 1px solid black;
	border-right: 1px double black;
  	border-top: 1px solid black;
	border-bottom: 1px solid black;
	max-width: 100%;
	height: auto;
  	display: block;
  	}

img {
  	display: block;
  	margin: auto;
  	width: 100%;
	}





