html {
  font-size: 1em;
  line-height: 1.4;
}

body {
  background: #303030 url('bg.png') fixed;
  color: #ddd;
  margin-top: 50px;
}

h1 {
  color: #fff;
	font-family: 'Shadows Into Light Two', cursive;
  font-size: 3em;
	letter-spacing: 1px;
  margin: 0;
  padding: 0;
  text-shadow: 0 5px 0 rgba(0,0,0,100);
	text-transform: uppercase;
}

#content {
  background-color: #101010;
  border: 5px solid #303030;
  max-width: 600px;
  margin: auto auto;
  padding: 0.5em;
  text-align: center;
}

p {
  color: #ddd;
  font-family: Verdana, Arial;
  font-size: 0.8em;
}

a {
  color: #ddd;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333;
  margin: 1em 0;
  padding: 0;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #990000;
  text-shadow: none;
}

::selection {
  background: #990000;
  text-shadow: none;
}

@media only screen and (max-width: 500px) {
    img {
      height: 250px;
      width: 250px;
    }
    
    #content {
      background-color: #101010;
      border: 5px solid #303030;
      max-width: 85%;
      margin: auto auto;
      padding: 0.5em;
      text-align: center;
    }
}