:root {
  color-scheme: dark;
}

@font-face {
  font-family: "Micra";
  src: url("../font/Micra.woff2") format("woff2"), local("Micra"),
    local("Micra Regular"), local("Micra-Regular");
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f1115;
  color: #e6e6e6;
  display: grid;
  place-items: center;
}

.splash {
  width: min(900px, 92vw);
  padding: 3rem;
  border: 1px solid #2a2f38;
  border-radius: 14px;
  background: #171b22;
  position: relative;
  overflow: hidden;
}

.title-row {
  min-height: clamp(120px, 18vw, 180px);
}

.title-row > h1 {
  margin: 0;
  padding-right: clamp(200px, 28vw, 300px);
  font-family: "Micra", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(168, 85, 247, 0.9);
}

.logo {
  width: clamp(170px, 24vw, 250px);
  height: auto;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.tagline {
  margin-top: 0.5rem;
  color: #b8bec9;
}

.content {
  margin-top: 2rem;
  line-height: 1.7;
}

.tg-icon {
  width: 0.95em;
  height: 0.95em;
  vertical-align: -0.1em;
}

h2 {
  margin-top: 0;
  color: #f0f3f8;
  text-shadow: 0 1px 8px rgba(168, 85, 247, 0.9);
}

a {
  text-shadow: 0 1px 6px rgba(58, 134, 255, 0.9);
}

@media (max-width: 680px) {
  .title-row {
    min-height: 140px;
  }

  .title-row > h1 {
    margin-left: -2.4rem;
    padding-right: 170px;
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .logo {
    width: 150px;
  }
}
