* {
  box-sizing: border-box;
}
.--layout-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.--layout-flex.--row {
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
}
.--layout-flex.--column {
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.--layout-flex.--flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.--layout-flex.--align-content-between {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.--layout-flex--1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
a img {
  border: none;
}
> * {
  box-sizing: border-box;
}
html {
  font-weight: 300;
  font-size: 62.5%;
  padding: 0;
}
html,
body {
  max-width: 100%;
  min-height: 100vh;
}
body {
  background: #0e0e0e;
  color: #fff;
  height: 100%;
  min-height: 100vh;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  font-family: "Roboto", sans-serif;
  max-width: 1900px;
  margin: 0 auto;
}
main {
  display: block;
  width: 100%;
  padding: 0 10vw 30vh;
}
header {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10vw;
}
@media only screen and (max-width: 570px),
  all and (max-width: 820px) and (min-width: 571px) {
  header {
    height: auto;
    min-height: 28vh;
  }
}
header h1 {
  font-weight: 300;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.01em;
}
header h2 {
  font-weight: 400;
  font-size: 12px;
  margin: 1em 0;
  display: none;
}
p {
  margin-bottom: 1em;
  font-size: 24px;
  font-weight: 200;
}
a {
  color: inherit;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
a span {
  position: relative;
  z-index: 2;
}
a:hover {
  color: #000;
}
a:hover:after {
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: padding-box;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.1);
}
a:after {
  display: block;
  position: absolute;
  bottom: -2px;
  content: "";
  width: 100%;
  height: 3px;
  background: #eee;
}
