body {
  background: #7ec0bd; 
	background-size: cover;
	background-attachment: fixed;
  background-position:center;
  color: #8ade70;
	font-family: "VT-100", fixedsys, System, monospace;
	font-size: 15px;
  }
  
center {
  text-align: center;
  }
  
a {
  color: #d0d168;
  }

.highlight {
  background-color: #abf8f5;
}

.box {
  background: #608ac8;
  border-radius: 5px;
  border: 1px solid #5476a9;
  box-shadow: 2px 2px #3e639b;
  }

/*The title bar of boxes has slightly more padding, since there's more room to space text.*/
.box-title-bar {
  background: #4f78b6;
  font-weight: bold;
  padding: 7px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #284c34;
  }

/*Main body text boxes.*/
.box {
  margin: auto;
  margin-top: 25px;
  width: 70vw;
  }
  
/*Inside/main text of window boxes.*/
.inner {
  padding: 10px;
  padding-bottom: 5px;
  padding-top: 0px;
  }

/*For the symbol in the top right corner.*/
.right {
  float: right;
  margin-right: 5px;
  font-family: "Arial", sans-serif;
  line-height: 12px;
  }
  
/*Prevent image overflow.*/
.box img {
  max-width: 100%;
  height:auto; /*Prevent squishing*/
  }
  
   .column {
	 display: flex;
	 flex-wrap: wrap;
}

.image-grid {
	flex: 50%;
	max-width: 50%;
}

.image-grid img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	width: 98%;
}

@media (max-width: 984px){
	.image-grid{
		flex: 100%;
		max-width: 100%;
	}
	.box {
		width: 80vw;
	}
}