/* Der Standard-Cursor */
body {
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Verhindert Scrollbars, wenn der Drache fliegt */
}

/* Klasse für das Schaf-Emoji 🐑 als Cursor */
.sheep-cursor {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' style='font-size:30px'><text y='30'>🐑</text></svg>"), auto !important;
}

/* Der Drache */
#dragon {
position: fixed;
width: 100px; /* Breite des Drachens */
height: auto;
z-index: 1000;
display: none;
pointer-events: none; /* Mausereignisse ignorieren */
transition: transform 0.1s linear;
transition: none !important;
}

#dragon img {
width: 120px;  /* Hier kannst du die Größe genau einstellen */
height: auto;  /* Behält das Seitenverhältnis bei */
display: block;
}
