/* Reset default margins and set full-height for proper centering */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: lightgray; /* light gray background */
  /* background-color: #000;  black background alternative */
  color: #ffffff;
}

/* Use Flexbox to center the container */
body {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container mimicking the size of "what can I help with" */
.center-container {
  width: 320px; /* adjust width to your desired size */
  padding: 20px;
  text-align: center;
  background: #000; /* black background */
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1); /* subtle white-ish shadow */
  border-radius: 8px;
}

.center-container h1 {
  margin: 0 0 10px;
  font-size: 24px;
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 1px; /* Adjust spacing as needed */
  /* Optional: add a subtle text-shadow for extra retro flair */
  text-shadow: 1px 1px 0 #000;
}

/* Adds extra spacing (roughly two lines) before the email */
.center-container .email {
  margin-top: 20px;
}