/* General Body */
body {
  background-color: #fff5e6; /* Soft peachy background color */
  font-family: "Comic Sans MS", cursive, sans-serif; /* Embrace the nostalgia */
  color: #333;
  margin: 0;
  padding: 0;
}

/* Title and Headings */
h1, h2, h3 {
  font-family: "Arial", sans-serif;
  color: #ff3399; /* Neon pink for headings */
  text-shadow: 2px 2px 5px #000000; /* Glowing text effect */
  text-align: center;
  margin-top: 20px;
}

/* Main Container */
.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  border: 5px solid #ff3399; /* Border around the container */
  background-color: #ffccff; /* Soft pinkish-purple background */
}

/* Links */
a {
  color: #00ff00; /* Neon green link color */
  text-decoration: none; /* No underlines */
}

a:hover {
  color: #ff00ff; /* Pinkish purple hover effect */
  text-decoration: underline;
  font-weight: bold;
}

/* Retro Buttons */
button {
  background-color: #ff3399;
  color: white;
  border: 3px solid #ff66cc;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); /* Glow effect */
  transition: all 0.3s ease;
}

button:hover {
  background-color: #ff66cc; /* Button color change on hover */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Retro Borders */
.bordered {
  border: 4px dotted #ff3399;
  padding: 15px;
  margin: 20px 0;
}

/* Backgrounds */
.background {
  background-image: url('https://www.example.com/pattern.gif'); /* Optional retro animated background */
  background-repeat: repeat;
  background-position: center;
}

/* Glowing Text (For fun) */
.glow {
  color: #ff3399;
  text-shadow: 0 0 10px #ff3399, 0 0 20px #ff3399, 0 0 30px #ff3399;
}

/* Flashing Text (A little fun and nostalgic) */
@keyframes flash {
  0% {
    color: #ff00ff;
  }
  50% {
    color: #ffff00;
  }
  100% {
    color: #ff00ff;
  }
}

.flashing-text {
  animation: flash 1s infinite; /* Flashing effect */
  font-size: 24px;
}

/* Form Styling */
input, textarea {
  border: 2px solid #ff3399;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
}

input[type="submit"] {
  background-color: #ff3399;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #ff66cc;
}

/* Footer Styling */
footer {
  background-color: #ff3399;
  color: white;
  text-align: center;
  padding: 15px;
  position: fixed;
  width: 100%;
  bottom: 0;
  font-size: 14px;
  border-top: 5px solid #ff66cc;
}

footer a {
  color: #00ff00;
}
footer a:hover {
  color: #ff00ff;
}

/* Marquee Effect (Optional - Retro Web Vibe) */
marquee {
  color: #ff3399;
  font-size: 20px;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 2px 2px 5px #000000;
}
