/* Dark theme */
body {
  background-color: #1e1e1e;
  color: #ffffff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Headings */
h1 {
  font-size: 3rem; /* big text */
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Links */
a { 
  color: #4da6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Visit counter */
#visitText {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.2em;
  color: #aaaaaa;
  margin: 0;
}

