body {
  background-color: #000000;
  color: #00ff00;
  font-family: "Courier New", monospace;
  text-align: center;
}

#logo {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  position: relative;
}

#logo::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid #00ff00;
  border-radius: 50%;
  animation: glowing-border 2s linear infinite;
}

@keyframes glowing-border {
  0% {
    box-shadow: 0 0 5px #00ff00;
  }
  50% {
    box-shadow: 0 0 10px #00ff00;
  }
  100% {
    box-shadow: 0 0 5px #00ff00;
  }
}

#logo img {
  width: 75%;
  height: 75%;
  border-radius: 50%;
}

.form {
  border: 2px solid #00ff00;
  border-radius: 10px;
  margin: 50px auto;
  padding: 20px;
  max-width: 500px;
  animation: glowing-line 2s linear infinite;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #00ff00;
}

input[type="number"],
input[type="text"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #000000;
  color: #00ff00;
  margin-bottom: 10px;
}

input[type="submit"] {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background-color:  #3366cc;
  color:  #d5dce9;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #008000;
}

#footer {
  margin-top: 50px;
  padding: 20px;
  background-color: #000000;
  font-family: "Courier New", monospace;
  font-size: 14px;
}

#footer a {
  font-weight: 700;
  color: #00ff00;
  text-decoration: none;
}

#footer p {
  margin: 0;
  color: #00ff00;
}

.visitor-count {
  margin-bottom: 20px;
}

/* Add animation to the logo */

#logo img {
  animation: rotate 4s linear infinite;
}

/* Add animation to the form */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.form {
  animation: slideIn 1s ease-in-out;
}

/* Add animation to the footer */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#footer {
  animation: fadeIn 1s ease-in-out;
}


#logo img {
  animation: rotate 8s linear infinite; /* Increase the animation duration to slow it down */
}

/* Add animation to the form submission button */
input[type="submit"] {
  transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background-color: #008000;
}

/* Add animation to the response message */
#response {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Add animation to the visitor count */
#visitorCount {
  animation: countFadeIn 1s ease-in-out;
}

@keyframes countFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

