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

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fullscreen background using the image you provided */
body {
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered text styling */
.centered-text {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8); /* transparent white */
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}
