@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');

html, body {
  height: 100vh;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background-color: #1E1E1E;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
    align-items: center;
    justify-content: center;
}

.roboto-box {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    /* Smaller base and max for better mobile sizing */
    font-size: clamp(1rem, 3.5vw, 2rem);
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  /* Use gap for all spacing between direct children */
  gap: 1rem;
}

.center * {
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0; /* Prevents flex child overflow */
}

/* Ensure more compact sizing on narrow mobile screens */
@media (max-width: 420px) {
  .roboto-box {
    font-size: 0.95rem;
  }
}

