/* Copyright (c) 2019 Matthew Michelotti, All Rights Reserved. */

* {
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
	background: #dee0e5 url("bg.png") fixed;
}

a.anchor {
    display: block;
    position: relative;
    top: -63px; /* a little more than header height */
    visibility: hidden;
}

.game-backdrop {
  position: relative;
  width: 980px;
  height: 480px;
  margin-bottom: 50px;
}

.game-backdrop img {
  display: block;
}

a.play-button, a.about-button {
  color: white;
  font-size: 40px;
  font-weight: bold;
  padding: 8px 10px;
  border: solid;
  border-width: 3px;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
}

.game-backdrop a.play-button, .game-backdrop a.about-button {
  border-color: white;
}

.play-button-wrapper a.play-button {
  border-color: #235;
}

.game-backdrop a.play-button, .game-backdrop a.about-button {
  position: absolute;
  bottom: 5%;
}

.game-backdrop a.play-button {
  left: 15%;
  background-color: rgba(30, 90, 200, 0.5);
}

.game-backdrop:hover a.play-button, .play-button-wrapper a.play-button {
  background-color: rgb(30, 90, 200);
}

.game-backdrop a.play-button:hover, .play-button-wrapper a.play-button:hover {
  background-color: rgb(60, 120, 230);
}

.game-backdrop a.about-button {
  right: 15%;
  background-color: rgba(200, 30, 90, 0.5);
}

.game-backdrop:hover a.about-button {
  right: 15%;
  background-color: rgb(200, 30, 90);
}

.game-backdrop a.about-button:hover {
  background-color: rgb(230, 60, 120);
}

.play-button-wrapper {
  text-align: center;
  margin: 40px 0;
}

#wrapper {
  min-height: 100%;
  position: relative;
}

#header {
  position: fixed;
  width: 100%;
	height: 60px;
  top: 0;
  z-index: 100;
	background: #235;
	border-bottom: 3px solid white;
}

#header-inner {
	width: 1000px;
	margin: 0 auto;
	padding: 0;
}

#header h1 {
  float: left;
  font-size: 40px;
  margin: 8px 10px 0;
}

#header h1 a {
  color: white;
	text-decoration: none;
  font-weight: normal;
}

#header ul {
  float: right;
	list-style: none;
}

#header li {
	float: left;
  margin: 10px 15px 0px;
  font-size: 20px;
  font-weight: bold;
}

#header b {
  color: #999;
  padding: 8px 3px 5px;
  font-weight: bold;
}

#header a {
  color: white;
	text-decoration: none;
  padding: 8px 3px 5px;
}

#body {
  padding: 60px 10px 170px;	/* Height of header and footer */
}

#page {
	width: 980px;
  height: 100%;
  background: white;
  margin: 20px auto;
  padding: 5px 0 25px;
}

#page h1 {
  text-align: center;
  text-transform: uppercase;
  color: #222;
  font-size: 32px;
  font-weight: bold;
  margin: 20px 0;
}

#page h2 {
  margin: 24px 28px 16px;
  font-size: 50px;
  font-weight: normal;
}

#page p {
  margin: 16px 28px 20px;
  font-size: 20px;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.5;
}

#page h2 a {
  font-weight: bold;
}

#page p a, #page h2 a, #blog-table a {
  color: #35a;
}

#page p a:hover, #page h2 a:hover, #blog-table a:hover {
  text-decoration: none;
}

.gallery {
  text-align: center;
  margin: 20px 0;
}

.gallery img {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
    height: 200px;
    margin: 10px;
}

.gallery img:hover {
    border: 1px solid #222;
}

#page video, #page .video {
  display: block;
  width: 800px;
  height: 450px;
  margin: 0 auto 50px;
  border-style: none;
  background-color: #dee0e5;
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 170px;
  background: #235;
  border-top: 3px solid white;
  text-align: center;
}

#social {
  margin: 30px 0 25px;
}

#social a {
  color: #abc;
  font-size: 40px;
  padding: 10px;
  text-decoration: none;
  margin: 0 5px 0;
}

#social a:hover {
  color: white;
}

#footer p {
  color: #abc;
  font-size: 15px;
  margin: 0;
}

#donate-wrapper {
  text-align: center;
}

#donate-wrapper i {
  font-size: 30px;
  color: #253B80;
}

#donate-wrapper form {
  display: inline-block;
}

.blog-info {
  width: 100%;
  overflow: auto;
}

.blog-info .blog-date {
  font-style: italic;
  color: #777;
  float: left;
}

.blog-info .medium-blog-link {
  float: right;
}

.blog-img {
  display: block;
  margin: 0 auto;
}

#blog-table {
  margin: auto;
  font-size: 23px;
  border-spacing: 40px 15px;
}

.blog-table-date {
  font-style: italic;
  color: #777;
}
