@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..700&family=Roboto+Mono:wght@300;400;700&display=swap');

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

body {
  font-family: 'Roboto Mono', monospace;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

a {
  color: #111;
}

a:hover {
  opacity: 0.6;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 48px;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 14rem;
  font-weight: 280;
  letter-spacing: 0.05em;
  line-height: 1;
}

.tagline {
  font-size: 24px;
  font-weight: 400;
  color: #444;
  margin-top: 8px;
  padding-left: 1.3rem;
}

.hero-bottom {
  font-size: 15px;
  color: #444;
  text-align: left;
  padding-left: 1.3rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-logo {
    font-size: 10rem;
  }

  .tagline {
    font-size: 20px;
    padding-left: 0.89rem;
  }

  .hero-bottom {
    font-size: 14px;
    padding-left: 0.89rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 32px 24px;
  }

  .hero-logo {
    font-size: 6rem;
  }

  .tagline {
    font-size: 14px;
    margin-top: 0;
    padding-left: 0.445rem;
  }

  .hero-bottom {
    font-size: 12px;
    padding-left: 0.445rem;
  }
}
