body{
	margin: 50px;
}
span,p{
	font-family: 'px_sans_nouveauxregular', 'VT323', monospace;
}
#window{
	background-color: #d4d0c8;
	padding: 4px 4px 20px 4px;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 2px 2px #3c3b38;
	position: absolute;
	left: 0px;
	top: 0px;
}
#window_header{
	height: 40px;
	width: 100%;
	//background-color: #3a5692;
	background-image: linear-gradient(to right, #00004c, #a9d1fb);
	padding: 0px 2px 0px 5px;
	box-sizing: border-box;
	cursor: grab; 
}
#window_header #title{
	color: white;
}
#window_header #exit, #window_header #maximise{
	height: 28px;
	width: 32px;
	float: right;
	background-position: center; 
	background-repeat: no-repeat;
	background-size: cover; 
	cursor: pointer;
}
#window_header #maximise{
	background-image: url("https://www.paulchrisjones.com/img/button_maximise.png");	
}
#window_header #exit{
	background-image: url("https://www.paulchrisjones.com/img/button_exit.png");	
}
#window_content{
	padding: 5px;
}
#window_content .image_container{
	width: 250px;
	text-align: center;
	margin: 0px auto;
	border: 2px gray solid;
}
#window_content img{
	width: 100%;
	box-shadow: 2px 2px #3c3b38;
}
.flex_parent{
	display: flex;
	justify-content: center;
}
#hall_of_shame h1{
	text-align: center;
}
#hall_of_shame .person{
	flex: 1;
	text-align: center;
	border: 2px solid black;
	margin: 20px;
	max-width: 500px;
	padding: 10px;
}
#hall_of_shame img{
	border: 5px solid black; 
	max-width: 200px;
}
@media (max-width: 600px) {
  .flex_parent{
    display: block;
  }
}
.flex_break{
	flex: 1;
	width: 100%;
}
