/* Base */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;

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

  background: #fff;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Media */
img {
  max-width: 100%;
  height: auto;
}

.logo {
  max-width: 400px;
}

.tagline {
  font-size: 16px;
  font-family: "Courier New", Courier, monospace;
  font-weight: 300;
  color: #888;
  margin-top: 60px;
}

.footer {
  font-size: 14px;
  color: #888;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .logo { max-width: 250px; }
  .tagline {
    font-size: 14px;
    margin-top: 40px;
  }
}