@font-face {
  font-family: 'Comic Sans MS';
  src: url("comic-sans-ms/comici.ttf");
}
body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #ffdd57;
  color: #000;
  text-align: center;
  padding: 20px;
}
.container, h1, .marquee, .greeting, form, label, input, button, #visitorCount {
  font-family: 'Comic Sans MS', cursive, sans-serif;
}
.container {
  background-color: #00ffff;
  border: 5px solid #ff00ff;
  padding: 20px;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
h1 {
  color: #ff00ff;
  font-size: 2em;
  animation: flashing 1s infinite;
}
@keyframes flashing {
  0% { color: #ff00ff; }
  50% { color: #00ff00; }
  100% { color: #ff00ff; }
}
.marquee {
  font-size: 1.5em;
  height: 1.5em;
  color: #ff0000;
  background-color: #ffff00;
  padding: 10px;
  white-space: nowrap;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}
.marquee span {
  display: block;
  width: 100%;
  position: absolute;
  animation: marquee 10s linear infinite;
}
@keyframes marquee {
  0% { left: 100%; }
  100% { left: -100%; }
}
.greeting {
  font-size: 1.5em;
  color: #0000ff;
  margin: 20px 0;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}
.gif-container {
  margin: 20px 0;
}
.gif-container img {
  width: 150px;
  height: auto;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}
#additionalPlusOnes {
  width: 100%;
}
label, input, button {
  margin: 10px 0;
  font-size: 1.2em;
  width: 90%; /* Make inputs less wide */
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}
input {
  padding: 10px;
  margin-top: 0;
  box-sizing: border-box;
  border: 2px solid #ff00ff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
input:hover {
  border-color: #00ff00;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
input:focus {
  border-color: #00ff00;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  outline: none;
}
button {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  animation: flashingButton 1s infinite;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}
@keyframes flashingButton {
  0% { background-color: #ff69b4; }
  50% { background-color: #ff1493; }
  100% { background-color: #ff69b4; }
}
#visitorCount {
  font-size: 1.2em;
  margin-top: 20px;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}

/* Media Queries for Responsive Design */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  .container {
    padding: 15px;
    border-width: 3px;
  }
  h1 {
    font-size: 1.5em;
  }
  .marquee {
    font-size: 1.2em;
    padding: 5px;
  }
  .greeting {
    font-size: 1.2em;
  }
  .gif-container img {
    width: 100px;
  }
  label, input, button {
    font-size: 1em;
  }
}
