* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #0d0d0d;
  color: #e0e0e0;
  font-family: "Fira Code", monospace;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 100vw;
}

.logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto -64px auto;
  display: block;
  image-rendering: crisp-edges;
}

.links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #888888;
  width: 100%;
}

.btn {
  color: #bbbbbb;
  text-decoration: none;
  padding: 2px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.release-text {
  font-family: "Fira Code", monospace;
  font-weight: 700;
  color: #ffffff;
  margin-top: 20px;
  font-size: 2rem;
  letter-spacing: -0.5px;
}

@media (max-width: 480px) {
  .logo {
    max-width: 220px;
    margin-bottom: -48px;
  }

  .release-text {
    font-size: 1.5rem;
  }
}
