/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Background and layout */
body {
  background-color: #1f2937; /* Or any color you prefer */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered container */
.container {
  text-align: center;
}

/* Large text styling */
.logo-text {
  font-size: 6rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.1rem;
}