/* General reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Courier New', Courier, monospace; /* Default retro font for body text */
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f1e8; /* Light cream background */
  color: #121314; /* Dark text color */
  text-align: center;
}

.coming-soon-container {
  max-width: 600px;
  padding: 20px;
  border: 5px solid #006b7a; /* Teal border for retro accent */
  border-radius: 15px;
  background: #f6f1e8; /* Background matches the page */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ef7821; /* Retro orange text color */
  text-transform: uppercase;
  text-shadow: 3px 3px #121314; /* Retro-style shadow */
  border-bottom: 2px solid #006b7a; /* Teal underline for emphasis */
  display: inline-block;
  font-family: 'Courier New', Courier, monospace; /* Title font changed to Courier New */
}

p {
  font-size: 1.5rem;
  color: #121314; /* Dark text color */
  margin-top: 1rem;
}

p:hover {
  color: #006b7a; /* Teal hover effect for text */
  transition: color 0.3s ease;
}