
body {
  margin: 10%;
  font-family: 'Orbitron', monospace;
  background: #f4ffb0
  color #f4ffb0;
  overflow-x: hidden;
  cursor: url('leenacursor.png'), auto;
}
body {
  cursor: url('leenacursor.png'),auto;
}

header {
  background:#efff5c;
  padding: 2rem 1rem;
  text-align: center;
  color: black;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

h1 {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  margin: 0;
  transform: rotate(-1deg);
}

nav {
  margin-top: 1rem;
}

nav a {
  font-family: 'Orbitron', monospace;
  color: black;
  margin: 0 1rem;
  text-decoration: none;
  background: #efff5c;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: transform 0.2s ease, background 0.3s ease;
}

nav a:hover {
  transform: scale(1.1) rotate(3deg);
  background: #efff5c;
  color: white;
}