/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, html, main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: #fff;
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #000;
  transition: background 0.3s ease;
}

body.dark-mode {
  background: #000;
}

header {
  text-align: center;
  padding: 60px 0;
  opacity: 1;
  transition: opacity 1s ease;
  transition-delay: 1s;
}

.waiting header {
  transition-delay: 0s;
  transition: opacity 0s ease;
  opacity: 0;
}

a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
}

.dark-mode a {
  color: #fff;
}

.hf-button-bordered {
  display: inline-block;
  font-style: normal;
  border: 4px solid #000;
  padding: 10px 24px;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

.hf-button-bordered:hover {
  background: #000;
  color: #fff;
}

.dark-mode .hf-button-bordered {
  border: 4px solid #fff;
}

.dark-mode .hf-button-bordered:hover {
  background: #fff;
  color: #000;
}

.hf-nav-logo {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  font-size: 23px;
}

.hf-content {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  position: absolute;
}

.hf-logo {
  width: 200px;
  transition: opacity 1s ease;
  margin: 0 auto;
  margin-top: -120px;
  top: 50% !important;
  position: relative;
  opacity: 1;
  transition: opacity 1s ease;
  transition-delay: 2s;
}

.waiting .hf-logo {
  transition-delay: 0s;
  transition: opacity 0s ease;
  opacity: 0 !important;
}

.hf-logo-container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.intro-revealed .hf-logo {
  transition-delay: 0s;
  opacity: 0.1;
}

.hf-logo img {
  width: 100%;
  position: absolute;
  transition: opacity 2s ease;
}

.hf-logo img.dark {
  opacity: 0;
}

.dark-mode .hf-logo img.dark {
  opacity: 1;
}

.dark-mode .hf-logo img.light {
  opacity: 0;
}

.hf-content {
  opacity: 0;
  transition: opacity 1s ease;
  margin-top: 24px;
  max-width: 770px;
  width: 100%;
  padding: 0 28px;
  text-align: center;
  font-style: italic;
  font-weight: 800;
  z-index: -1;
  color: #000;
}

.dark-mode .hf-content {
  color: #fff;
}

.intro-revealed .hf-content {
  opacity: 1;
  z-index: 100;
}

.hf-content p {
  display: block;
  padding-bottom: 24px;
  line-height: 24px;
  font-size: 18px;
  letter-spacing: 0.01em;
  font-weight: 400;
  -webkit-transform: translate3d(0, -8px, 0);
          transform: translate3d(0, -8px, 0);
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

.intro-revealed .hf-content p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.hf-content p + a {
  margin-top: 18px;
}

@media (max-width: 390px) {
  header {
    padding: 30px 0;
  }
  .hf-nav-logo {
    font-size: 20px;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (orientation: landscape) {
  .hf-content p {
    font-size: 12px;
    padding-bottom: 6px;
    line-height: 20px;
  }
}
