:root {
  --bg: #243338;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Inter";
}

html {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  text-align: center;
  position: relative;
  padding-bottom: 4rem;
}

header {
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

footer {
  position: absolute;
  bottom: 1.5rem;
}

footer a {
  display: inline-block;
  transition: opacity 0.3s;
}

footer a:hover {
  opacity: 0.7;
}

.x-logo {
  width: 24px;
  height: 24px;
}
