/*
$black: rgba(0, 0, 0, 0.8);
$dark-grey: rgba(70, 70, 70, 1);
$pink: rgba(255, 0, 102, 1);
$white: rgba(255, 255, 255, 1);
*/

@font-face { font-family: Greenscr; src: url('../Greenscr.ttf'); }

body, html {
  font-family: "Greenscr", Monaco, monospace;
}

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

a#startButton {
  text-decoration: none;
}

a#authorLink:hover {
  color: rgba(255, 0, 102, 1);
}

.container {
  margin: 50px;
  text-align: center;
}

html {
  background-image: url("images/cat.jpg");
  background-position: 300px 500px;
  background-size: 100% auto;
  min-height: 100%;
  width: 100%;
}

header {
  margin: 100px;
  text-align: center;
}

h1 {
  color: rgba(255, 255, 255, 1);
  font-size: 100px;
  margin-bottom: 30px;
}

h2 {
  color: rgba(255, 255, 255, 1);
  font-family: "Courier New";
  font-size: 30px;
  font-weight: 100;
  margin: 0 auto 100px auto;
  max-width: 700px;
}

p {
  color: rgba(255, 255, 255, 1);
}

#startButton {
  background: rgba(255, 0, 102, 1);
  border: none;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  margin: 50px;
  padding: 20px 50px;
}

#startButton:hover {
  background: rgba(0, 0, 0, 0.8);
}

.tagline {
  font-size: 36px;
}