@font-face {
  font-family: 'Francisco Serial';
  src: url('fonts/FranciscoSerial-Xlight.ttf') format('truetype');
  font-weight: 100 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: '00 Wagram Mono Slab VN';
  src: url('fonts/00WagramMonoSlab-Light.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #f0f0f0;
  color: #282828;
  font-family: '00 Wagram Mono Slab VN', ui-monospace, Consolas, monospace;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logo {
  height: clamp(56px, 8vw, 80px);
  width: auto;
  margin-top: 60px;
  flex-shrink: 0;
}

.hero {
  flex: 1;
  width: 100%;
  max-width: 741px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.headline {
  margin: 0;
  font-family: 'Francisco Serial', Georgia, serif;
  font-weight: 200;
  font-size: clamp(2.25rem, 3vw + 1.5rem, 5rem);
  line-height: 1.05;
  color: #282828;
}

.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142.733px;
  height: 44.26px;
  max-width: 60vw;
}

.badge-brackets {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.badge-text {
  position: relative;
  z-index: 1;
  font-family: 'Francisco Serial', Georgia, serif;
  font-weight: 200;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.75rem);
  line-height: 1.05;
  color: #282828;
}

.footer {
  width: 100%;
  max-width: 538px;
  padding: 0 24px 64px;
  text-align: center;
}

.ghost {
  margin: 0 0 8px;
  font-family: 'Francisco Serial', Georgia, serif;
  font-weight: 200;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1.05;
  color: #e5e5e5;
  user-select: none;
}

@media (min-width: 280px) {
  .ghost {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
  }
}

address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #282828;
}

@media (min-width: 500px) {
  address {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }
}

address a {
  color: inherit;
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .logo {
    margin-top: 32px;
  }

  .footer {
    padding-bottom: 40px;
  }

  address {
    font-size: 13px;
  }
}
