/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: #F9FA57;
  font-family: monospace;
}

.page {
  width: 50%;
  margin: 0 auto;
}

.post {
  padding: 10px;
  background-color: #FCFEFC;
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.75);
  margin-bottom: 20px;
  color: #000;
}

.post h1 {
  margin-top: 0;
}

.notice {
  text-transform: uppercase;
  font-size: 2em;
}

.links {
  margin-bottom: 1em;
}

.news-link img, .friends-link img {
  width: auto;
  height: 2em;
  image-rendering: pixelated;
}

.nav {
  margin-bottom: 1em;
}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav li {
  display: inline-block;
  width: 20%;
  margin-left: 0;
  margin-right: 1em;
}

.splash img {
  width: 100%;
  height: auto;
}

.stage-link {
  display: block;
  width: 63%;
  margin: 1em 0;
}

.stage-link img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.stage-link:hover {
  filter: hue-rotate(160deg);
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.white-text {
  background-color: #FCFEFC;
  color: #000;
}

.tree {
  position: fixed;
  bottom: 0;
}

/* Easier this way */
* {
  image-rendering:optimizeSpeed;             /* Legal fallback */
  image-rendering:-moz-crisp-edges;          /* Firefox        */
  image-rendering:-o-crisp-edges;            /* Opera          */
  image-rendering:-webkit-optimize-contrast; /* Safari         */
  image-rendering:optimize-contrast;         /* CSS3 Proposed  */
  image-rendering:crisp-edges;               /* CSS4 Proposed  */
  image-rendering:pixelated;                 /* CSS4 Proposed  */
  -ms-interpolation-mode:nearest-neighbor;   /* IE8+           */
}