/* Reset margins and ensure consistent box sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full viewport height with centered flex layout */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* Enigmatic black background */
  color: #fff; /* White text for contrast */
  font-family: 'Roboto Condensed', sans-serif;
}

/* Styling for the headline */
h1 {
  font-size: 10vw; /* Responsive size; adjust as needed */
  font-variant: small-caps; /* Render text in small caps */
  font-feature-settings: "liga" 1, "clig" 1; /* Enable common ligatures */
}