/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;  /* Center horizontally */
  align-items: center;      /* Center vertically */
  background-color: #121212; /* Dark background for contrast */
  color: #fff;               /* White text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* Centered text styling */
.centered-text {
  font-size: clamp(2rem, 5vw, 4rem); /* Responsive font size */
  font-weight: bold;
}
