/* fonts and text */

@charset "UTF-8";

@font-face {
  font-family: OCRA;
  src: url(../fonts/OCRA.otf);
}

@font-face {
  font-family: Charter;
  src: url(../fonts/Charter.otf);
}

/* general styling */

* {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  text-decoration:none;
  font-weight:inherit;
  font-style:inherit;
  color:inherit;
  font-size:100%;
  font-family:inherit;
  vertical-align:baseline;
  list-style:none;
  border-collapse:separate;
  border-spacing:0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 30px 60px 30px 60px;
	text-align: left;
	vertical-align: top;
  background-color:#121212;
}

.container {
  position: relative;
  min-height: 100vh
}

/* nav */

nav {
  margin-left: 0;
  margin-right: auto;
  padding: 0;
  width: 100%;
	display: block;
  position: relative;
	text-align: center;
  left: 0px;
}

.navbutton {
  float: left;
  padding: 20px 20px 20px 0px;
}

.navbutton a {
  padding: 0px 3px 3px 3px;
  font-size: 16px;
  font-family: "OCRA", monospace;
  font-weight: 300;
  color: #eeeeee;
  text-decoration: none;
}

.navbutton a:hover {
  background-color: #5f87ff;
}

/* content */

.content {
  margin: 0;
  padding: 0 0 32px 0;
  width: 100%;
  max-width: 800px;
  clear: both;
}

.content h1 {
  margin: 32px 0px 32px 0px;
  font-size: 42px;
  font-family: "OCRA", monospace;
  font-weight: 300;
  color: #eeeeee;
  text-transform: uppercase;
  letter-spacing: 16px;
  clear: both;
}

.content h2 {
  margin: 32px 0px 32px 0px;
  font-size: 24px;
  font-family: "OCRA", monospace;
  font-weight: 300;
  color: #eeeeee;
  text-transform: uppercase;
  letter-spacing: 10px;
  clear: both;
}

.content img {
  margin: 32px 0px 32px 0px;
  display: block;
  height: auto;
  width: 100%;
  max-width: 800px;
}

.content p {
  margin: 0px 0px 16px 0px;
  font-size: 18px;
  font-family: "Charter", serif;
  font-weight: 300;
  color: #eeeeee;
  line-height: 1.5;
}

.content p i {
  font-style: italic;
}

.content a {
  color: #5f87ff;
  text-decoration: none;
}

.content a:hover {
  color: #eeeeee;
  background-color: #5f87ff;
}

/* profile styling */

.content .profile img {
  margin: 0px 32px 32px 0px;
  float: left;
  height: auto;
  width: 100%;
  max-width: 110px;
  vertical-align: center;
}

.content .profile p {
  vertical-align: center;
}

/* special text styling */

.OCRA {
  font-family: "OCRA";
  text-decoration-width: 1px;
}

/* footer */

footer {
  margin: 0;
  padding: 0;
  height: 16px;
  width: 100%;
  max-width: 800px;
  position: absolute;
  bottom: 0;
  clear: both;
  text-align: left;
}

footer p {
  font-size: 10px;
  font-family: "OCRA", monospace;
  color: #b2b2b2;
}

footer a {
  color: #5f87ff;
  text-decoration: none;
}

footer a:hover {
  color: #eeeeee;
  background-color: #5f87ff;
}

/* small screens */

@media (max-width: 900px) {
  body {padding: 30px 30px 30px 30px;}
  .content h1 {font-size: 24px; letter-spacing: 8px;}
  .content h2 {font-size: 16px; letter-spacing: 6px;}
}
