/* Base layout */
body {
  margin: 0;
  background: radial-gradient(ellipse at center, #0b0c2a 0%, #000000 100%);
  color: #00ffcc;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

/* Headings and text */
h1 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
}

p {
  font-size: 1.2em;
  margin-top: 0;
}

/* Clock styling */
.clock {
  font-size: 2em;
  margin-top: 1em;
  background: rgba(0, 255, 204, 0.1);
  padding: 0.5em 1em;
  border: 1px solid #00ffcc;
  border-radius: 8px;
}

/* Starfield */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  z-index: -1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00ffcc;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* Email button container */
.email-button-container {
  margin-top: 40px;
}

/* Email button styling */
.email-button {
  display: inline-block;
  padding: 20px 40px;
  background-color: #ffffff;
  color: #000000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 2em;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #000000;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #00ffcc;
  transition: transform 0.2s ease-in-out;
}

.email-button:hover {
  transform: scale(1.05);
}