.header {
  background: var(--color-surface);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-8);
  box-shadow: var(--shadow-sm);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  min-height: var(--header-height);
  box-sizing: border-box;
}

.logo {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  aspect-ratio: auto;
  display: block;
}

.header-logo {
  height: 40px;
  width: auto;
}

.header-icon {
  height: 32px;
  width: auto;
}

.logo-image {
  height: 120px;
  width: auto;
  display: block;
  margin: 1rem 0;
}

.main-content {
  position: absolute;
  top: calc(var(--header-height) + env(safe-area-inset-top));
  bottom: calc(var(--footer-height) + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  padding: var(--space-4);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
    text-align: center;
}

.footer {
  background: var(--color-surface);
  color: var(--color-muted);
  text-align: center;
  font-size: var(--text-md);
  border-top: 1px solid var(--color-border);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: var(--footer-height);
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: env(safe-area-inset-bottom);
}