/* General Page Styling */
body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #1a1a1a; /* Dark background for that retro feel */
  color: #d4d4d4; /* Light grey text */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Impact', sans-serif;
  color: #b2b2f1; /* Light purple */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Links */
a {
  color: #b2b2f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff66cc; /* Bright pinkish purple when hovered */
  text-decoration: underline;
}

/* Retro Button Styling */
button {
  background-color: #9b59b6; /* Purple button */
  color: white;
  font-size: 1.2rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #8e44ad; /* Slightly darker purple on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

button:active {
  transform: scale(0.98); /* Slight scale down on click */
}

/* Retro Card Style */
.card {
 background: transparent;
 background-image: url(https://graciel.neocities.org/backgroundfornekoweb.jpg);
  background-color: #2d2d2d;
  border: 2px solid #b2b2f1;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.05); /* Hover effect for card */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

/* Footer Styling */
footer {
  background-color: #1a1a1a;
  color: #b2b2f1;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
}

/* Retro Border Effect */
.border-effect {
  border: 2px solid #b2b2f1;
  padding: 20px;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.border-effect:hover {
  border-color: #ff66cc;
}

/* Glow Effect for Titles */
.glow {
  color: #ff66cc;
  text-shadow: 0 0 10px #ff66cc, 0 0 20px #ff66cc, 0 0 30px #ff66cc;
}

/* Add some spacing */
section {
  margin: 40px 0;
}


