body {
	background-color: Black;
}

@media only screen and (min-width: 1280px) {
	.main {
		width: 1280px;
		display: grid;
		grid-template-columns: 800px 446px;
		grid-template-rows: auto;
		grid-gap: 1rem;
	}
	header {
		grid-column-start: 1;
		grid-column-end: 3;
	}
}

@media only screen and (max-width: 1279px) {
	.main {
		height: 100vh;
		width: 100vw;
	}
}

.main {
	font-family: Palatino, Arial;
	margin: auto;
}

dt {
	font-weight: bold;
	margin: 2px 0px;
}

.participants dd {
	font-style: italic;
}

.sidebar-container {
	background-color: Black;
}

.sidebar,header,.entry {
	border-width: medium;
	border-color: black;
	border-style: solid;
	border-radius: 10px;
	padding: 20px;
	background-color: Silver;
}

.sidebar > img {
	height: auto;
	cursor: pointer;
	transition: 0.3s;
}

.sidebar > img:hover {
	opacity: 0.7;
}

header {
	background-color: SteelBlue;
	color: White;
}

header h1 {
	font-family: 'Tangerine', cursive;
	font-size: 5em;
	margin: 0px;
}

header h2 {
	font-family: 'Tangerine', cursive;
	color: White;
	font-size: 2.5em;
	margin: 0px;
}

h2 {
	font-family: 'Tangerine', cursive;
	color: DarkRed;
	font-size: 2em;
	margin: 0px;
}

a.banner {
	font-family: 'Tangerine', cursive;
	color: DarkRed;
	font-size: 4em;
	margin: 0px;
	text-align: center;
	display: block;
}

.present ul {
	display: flex;
	flex-direction: row;
}

.present li {
	display: block;
	margin-right: 10px;
	font-style: italic;
}

.button-bar {
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-end;
}

.button-bar:first-of-type {
	float: right;
}
	
.button {
	background-color: DarkRed;
	border: none;
	margin-left: 5px;
	color: White;
	padding: 3px 5px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	font-size: 1.5em;
	font-family: 'Tangerine', cursive;
	border-radius: 5px;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 20px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
	margin: auto;
	display: block;
	max-width: 80%;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	font-family: 'Tangerine', cursive;
	color: lightgrey;
	font-size: 3em;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}

/* The Close Button */
.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover, .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
	.modal-content {
		width: 100%;
	}
}
