html
{
  height: 100%;
  width: 100%;
  font: 18px "Google Sans", sans-serif;
}

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

body
{
  font-size: 1em;
  color: #363636;
  background-color: #fff;
  line-height: 1.5;
}

header, nav, section, footer, figure, figcaption
{
  display: block;
}

[hidden], .old-IEs-inline, .old-IEs-block, .old-IEs
{
  display: none;
}

a
{
  text-decoration: none;
  color: #214CD6;
  font-weight: bold;
  transition: color 0.5s
}

a:hover
{
  color: #FF6D24;
}

a img
{
  border: none;
}

strong, .strong
{
  font-weight: bold;
}

p, h1, h2, h3
{
  margin: 0 0 1em 0;
}

#loader
{
  width: 100%;
  height: 100%;
  max-width: 1024px;
  aspect-ratio: 1.8/1;
  margin: 1em auto;
  padding: 0;
}

#loader h1
{
  display: none;
}

#logo
{
  width: 0;
  height: 100%;
  margin: 0 auto;
  background: transparent url(../graphics/logo.svg) 50% 50% no-repeat;
  background-size: 90% auto;
  transition: 0.5s;
  transition-delay: 0.5s;
}

body.loaded #logo
{
  width: 100%;
  height: 100%;
}

#content
{
  width: 80%;
  margin: 0 auto 0 auto;
  padding: 0 0 5em 0;
  text-align: center;
}

footer
{
  text-align: center;
  color: #767676;
  padding: 1em 0;
}

@media all and (max-width: 800px)
{
  body
  {
    font-size: 0.85em;
  }
}
