@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

/* Box Sizing & Viewport */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

@-ms-viewport {
  width: device-width;
}

/* Base Layout & Reset */
html,
body,
h1,
h2,
p,
a,
center,
header {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

header {
  display: block;
  width: 100%;
  max-width: 900px; /* Optional max-width to keep long text readable */
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  padding: 2em;
  background-color: #000;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Roboto', sans-serif;
  font-size: 16pt;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.65em;
  -webkit-text-size-adjust: none;
  -ms-overflow-style: scrollbar;
}

body > * {
  position: relative;
  z-index: 2;
}

/* Preload State Override */
body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
  animation: none !important;
  transition: none !important;
}

/* Typography & Elements */
h1,
h2 {
  color: #fff;
  font-weight: 700;
  line-height: 1em;
  margin: 0 0 1em 0;
}

h1 a,
h2 a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 2.5em;
  line-height: 1.25em;
}

h2 {
  font-size: 1.75em;
  line-height: 1.5em;
}

p {
  margin: 0 0 2em 0;
}

strong,
b {
  color: #fff;
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

a {
  transition: border-bottom-color 0.2s ease, color 0.2s ease;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.25);
  color: #1cb495;
  text-decoration: none;
}

a:hover {
  border-bottom-color: transparent;
  color: #1cb495 !important;
  text-decoration: none;
}

/* Header Specifics */
header p {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  margin: 0 0 1.5em 0;
}

header h2 + p {
  font-size: 1.25em;
  margin-top: -1em;
  line-height: 1.5em;
}

#header h1 {
  font-size: 3.25em;
  margin: 0;
}

#header p {
  font-size: 1.35em;
  line-height: 1.65em;
}

#header a {
  color: inherit;
}

/* Media Queries */
@media screen and (max-width: 1680px) {
  body {
    font-size: 12pt;
  }
}

@media screen and (max-width: 1280px) {
  body {
    font-size: 11pt;
  }
}

@media screen and (max-width: 980px) {
  body {
    font-size: 12pt;
  }
  header br {
    display: none;
  }
}

@media screen and (max-width: 736px) {
  body {
    font-size: 12pt;
  }
  header br {
    display: inline;
  }
  #header h1 {
    font-size: 2em;
  }
  #header p {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  html,
  body {
    min-width: 320px;
  }
  body {
    font-size: 12pt;
  }
  header br {
    display: none;
  }
}