html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0;
}



/* Webfont */

@font-face {
  font-family: "Favorit";
  src:  url("../fonts/favorit-light.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}




body {
	font-family: "Favorit", Helvetica, Arial, sans-serif;
	color: #111;
	background-color: #000;
  font-size: 100%;
	line-height: 1.2;
	letter-spacing: -0.02em;
  -webkit-font-feature-settings:  "dlig", "ss02", "ss03", "ss08";
  -moz-font-feature-settings:     "dlig", "ss02", "ss03", "ss08";
  -ms-font-feature-settings:      "dlig", "ss02", "ss03", "ss08";
  font-feature-settings:          "dlig", "ss02", "ss03", "ss08";
  text-rendering: optimizeLegibility;
}

a {
  text-align: center;
  color: #0f0;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  padding: 4px 12px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

a:hover {
  box-shadow: 0 0 16px rgba(0,0,0,0.2)
}

main {
  font-size: 1.25rem;
  width: 100%;
  display: flex;
  flex-flow: column;
  /*transition: all 0.6s;
  transition-timing-function: cubic-bezier(0.75, 0.05, 0.75, 0.05);*/

}

strong {
  font-weight: 400;
  font-feature-settings:
}

::selection {
  background-color: #0f0;
}

.header {
  display: none;
  position: fixed;
  width: 100%;
  height: 40px;
  padding: 16px 24px;
  justify-content: space-between;
}

.header_title {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.info {
  width: 100%;
  min-height: 50vh;
  background-color: #eee;
  padding: 16px 24px;
}

.footer {
  width: 100%;
  background-color: #eee;
  padding: 24px 24px;
}

.image {
  width: 100vw;
  height: calc(100vh - 8px);
  min-height: 50vw;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.05;
}




@media (min-width: 40em) {

  main {
    font-size: 2.25rem;
  }

  .header_title {
    font-size: 5rem;
  }
}
