/* General page setup */
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #111;
  color: #186000;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Container for moving content up */
.container {
  transform: translateY(-120px);
}

/* Title */
h1 {
  font-size: 5em;
  margin: 0;
  transform: translateY(-100px); /* moves only the title up */
}

/* Smooth fading dots */
.dots span {
  opacity: 0;
  animation: fade 1.5s infinite;
}

.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 0.3s; }
.dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes fade {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Paragraph */
p {
  font-size: 2em;
  color: #186000;
  margin-top: 60px;
  max-width: 800px;
}

/* Footer bar */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0d0d0d; /* slightly different bar color */
  padding: 10px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}

footer span {
  font-size: 1em;
  color: #186000;
  opacity: 0.7;
}
