body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  font-family: Arial, sans-serif;
  background: #000; /* Black background */
  color: #fff;      /* White text */
  overflow: hidden;
}

/* Rotating text */
.rotating-text {
  font-size: 3rem;
  font-weight: bold;
  animation: spin 6s linear infinite;
  color: #fff;
  transform-style: preserve-3d;
}

@keyframes spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.date-time {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #ccc; /* Slightly dimmed white for time */
}

.menu {
  margin-top: 20px;
  text-align: center;
}

.menu a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #aaa;
}

.socials {
  margin-top: 20px;
  font-size: 1.5rem;
}

.socials a {
  margin: 0 12px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.socials a:hover {
  color: #aaa;
}
