* {
	box-sizing: border-box;
}
html {
	font-family: 'Poppins', sans-serif;
	font-size: 25px;
}
body {
	text-align: center;
	margin: 0;
}
div.content {
	margin: 0;
	padding: 10px;
	color: #fff;
}
header h1 {
	font-size: 4em;
	margin-top: 5px;
	margin-bottom: 5px;
	font-family: 'Pacifico';
	font-weight: 400;
	text-decoration: underline;
}
h2 {
	font-size: 1.5em;
	margin-top: 2px;
	margin-bottom: 2px;
}
h3 {
	font-size: 1.1em;
	margin-top: 1px;
	margin-bottom: 1px;
}
main > h2 {
	margin: 0 0;
}
header h1,  header h2 {
	text-shadow: -5px -5px #0000008a;
}
ul.pagechoice {
	font-size: 1.3em;
	margin: 10px auto;
	list-style-type: none;
	width: 90%;
	padding: 0;
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
	grid-gap: 5px;
}
ul.pagechoice > li {
	margin: 5px 0;
	height: 4em;
	font-weight: 800;
	text-align: left;
	font-size: 1.1em;
	padding: 0.1em;
}
ul.pagechoice > li a {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: center;
	justify-content: left;
	height: 100%;
}
ul.pagechoice > li img {
	height: 3rem;
	margin-left: auto;
	margin-right: 1rem;
}
a {
	color: red;
	text-decoration: none;
}
p.author > a {
	color: #fff;
}
.background_div {
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background: linear-gradient(125deg, #0083fb, #bf150f);
	position: fixed;
	left: 0;
	right: 0;
	z-index: -1;
	display: block;
}
p.author {
	font-size: 0.9em;
	font-style: italic;
}
#popup {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	background-color: #48c2e2;
	background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #0083fb;
  margin: auto;
  padding: 0;
  border: 5px solid #0083fb;
  border-radius: 5px;
  width: auto;
  height: auto;
  max-height: 80%;
  min-width: 500px;
  max-width: 90vw;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  position: absolute;
  margin-top: 50px;
  margin-bottom: 50px;
  top: 40%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes animatetop {
  from {middle:-300px; opacity:0} 
  to {middle:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {middle:0; opacity:1}
}
#popup_close {
  color: white;
  float: right;
  font-size: 50px;
  font-weight: bold;
}
#popup_close:hover, .closeModal:focus {
  color: #bf150f;
  text-decoration: none;
  cursor: pointer;
}
.modal-header {
  padding: 10px 16px;
  background-color: #0083fb;
  color: white;
  text-align: center;
  height: 70px; 
  font-size: 20px;
}
.modal-header > h2 {
	margin: 0;
	font-size: 40px;
	letter-spacing: 5px;
}
.modal-body {
	padding: 16px;
	font-size: 30px;
	color: #353030;
	max-height: 70vh;
	overflow-y: auto;
	background-color: #fefefe;
	width: 100%;
}
.modal-body > h3 {
	font-size: 40px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.modal-body > p, .modal-body > ol {
	margin-top: 5px;
	margin-bottom: 5px;
}
.modal-body > ol {
	margin-left: 5px;
	margin-right: 5px;
	padding-left: 0;
	list-style-type: upper-roman;
	list-style-position: inside;
}
.modal-body > ol > li {
	margin-top: 10px;
	margin-bottom: 10px;
}
form input {
	background-color: #bf150f;
	color: white;
	border: 2px solid #0083fb;
	border-radius: 5px;
	font-size: 0.8em;
	padding: 1px;
	outline: none;
	font-family: 'Poppins', sans-serif;
	width: 200px;
	height: 50px;
	display: block;
	margin: 10px auto;
}
form input:focus {
	-webkit-box-shadow: 0px 0px 10px 5px #bf150fe6;
	-moz-box-shadow: 0px 0px 10px 5px #bf150fe6;
	box-shadow: 0px 0px 10px 5px #bf150fe6;
	color: white;
}
form input[type="password"]:focus::placeholder {
	opacity: 0;
}
form input[type="password"]::placeholder {
	transition: opacity 0.2s;
	text-align: center;
	color: #0083fb;
}
form input[type="submit"] {
	background-color: #0083fb;
	color: white;
	cursor: pointer;
	border: 2px solid #0083fb;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 1px;
}
form input[type="submit"]:hover {
	-webkit-box-shadow: 0px 0px 10px 5px #bf150fe6;
	-moz-box-shadow: 0px 0px 10px 5px #bf150fe6;
	box-shadow: 0px 0px 10px 5px #bf150fe6;
}
.outside_link {
	font-size: 0.7em;
	font-style: italic;
}
.outside_link > a {
	color: #c73d3d;
}
footer {
	margin-top: 4em;
}
a:hover, p.author > a:hover {
	color: #e403ff;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 0.7em;
	}
}