/* ==============================
   Base Layout
============================== */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Rubik Mono One', sans-serif;
  background-color: #ffffff;
}

/* ==============================
   Hero Section
============================== */

.hero {
  flex: 1; /* pushes footer down */

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  text-align: center;
}

/* Logo Image */
.hero-image {
  max-width: 95%;
  max-height: 85vh;

  width: auto;
  height: auto;

  animation: fadeIn 1.4s ease-out forwards;
  opacity: 0;
}

/* ==============================
   Footer
============================== */

.footer {
  text-align: center;
  padding: 15px 10px;
  background-color: #222;
  color: #fff;
  font-size: 14px;

  /* Override heading font */
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ==============================
   Animation
============================== */

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==============================
   Mobile Fine Tuning
============================== */

@media (max-width: 600px) {
  .hero-image {
    max-width: 100%;
    max-height: 75vh;
  }

  .footer {
    font-size: 12px;
  }
}