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

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(to bottom, #e9e8e8, #d6d6d6);
  font-family: 'FreeMono', monospace;
}

/* Header */
.header-bar {
  min-height: 3em;
  background-color: #2a2a2a;
  flex-shrink: 0;
}

/* Main content */
.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  height: 240px;
  width: auto;
}

.title {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 5.07rem;
  color: #0a1a5c;
  line-height: 1.15;
  text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
  .logo-group {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    width: 80vw;
    height: auto;
  }

  .title {
    text-align: center;
    max-width: 80vw;
    font-size: 11vw;
  }
}

/* Footer */
.footer-bar {
  min-height: 3em;
  background-color: #2a2a2a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
