/* Grundlayout */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  cursor: none; /* Hides the default system cursor */
}

header {
  background-color: #ff9900;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

button {
  background-color: #ff9900;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: none; /* also hide default cursor on buttons */
  font-size: 16px;
}

button:hover {
  background-color: #cc7a00;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
}

.gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.gif-container img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cursor {
  width: 24px;                /* smaller default size */
  height: 24px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, transform 0.25s ease;
  z-index: 10000;

  background-color: #ff00cc;  /* base pink = green on white, pink on dark */
  mix-blend-mode: difference;
  opacity: 1;
  border: none;
}

/* ✴️ Cursor grows only on hover */
a:hover ~ .cursor,
button:hover ~ .cursor,
input:hover ~ .cursor {
  width: 48px;                /* grows on hover */
  height: 48px;
  transform: translate(-50%, -50%) scale(1.2);
}



