html {
  font-family: sans-serif;
  font: 400 1em/1.4 'Open Sans',sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: #404040;
  background: black;
}

a {
  color: #404040;
}

.center-hv {
  /* https://alligator.io/css/centering-using-flexbox/ */

  /* Flex, baby */
  display: flex;

  /* Vertical centering */
  align-items: center;

  /* Horizontal centering */
  justify-content: center;

  /* Make the container cover the full page height */
  height: 100vh;
}

.center-h {

  /* Flex, baby */
  display: flex;

  /* Horizontal centering */
  justify-content: center;

}

.logo-zoomed {
  width: 23%;
}

.logo-shadow {
  /* Add drop shadow: Inner white, exterior red */
  box-shadow: 0 0 8px 0.8vh rgba(255, 255, 255, 0.2), 0 0 20px 1.5vh rgba(255, 0, 0, 0.19);
}
