/*======================================================
 Site: Golden Octopus Studios
 Date: April 2016
======================================================*/

*	{ margin: 0; }
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

header, footer, nav, article, section, aside, p	{
	display: block;
	margin: 0;
	padding: 0;
}

body {
  background-color: #333;
}

.splash {
  margin: 40px auto;
  width: 500px;
}

.splash img {
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .splash {
    width: 80%;
  }
}