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

:root {
  --color-bg: #8ECAE6;
  --color-navy: #1E3A5F;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-family);
  color: var(--color-navy);
}

main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
}

/* ---- Logo ---- */

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 120px;
}

/* ---- Typography ---- */

.top-left {
  position: absolute;
  top: 28px;
  left: 32px;
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 0.04em;
}

.tagline {
  position: absolute;
  bottom: 140px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
  .logo {
    width: 100px;
  }

  .tagline {
    bottom: 72px;
    font-size: 0.85rem;
  }
}
