/* Es tut mir leid für das, was du gleich sehen wirst. */

body {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    background-image: url('https://i.imgur.com/lO8t0A8.jpeg'); /* Ein wiederholendes, niedrig aufgelöstes Sova-Auge */
    background-color: #0c1a0c;
    color: #ffff00; /* Helles Gelb für den Text */
    margin: 0;
    padding: 20px;
}

header {
    background-color: hotpink;
    padding: 20px;
    border: 5px dashed blue;
    text-align: center;
}

h1, h2, h3 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    color: cyan;
    text-shadow: 3px 3px 0px red;
}

h2 {
    font-size: 3em;
    color: #ff00ff; /* Magenta */
}

h3 {
    font-size: 2em;
    color: lime;
}

a {
    color: #00ff00; /* Limettengrün */
}

a:hover {
    background-color: yellow;
    color: black;
}

hr {
    border: 10px dotted orange;
    border-radius: 5px;
}

section {
    background-color: rgba(0, 0, 255, 0.3); /* Halbtransparentes Blau */
    border: 10px groove red;
    padding: 15px;
    margin: 20px 5px;
}

.ability {
    background: repeating-linear-gradient(
        45deg,
        #606dbc,
        #606dbc 10px,
        #465298 10px,
        #465298 20px
    );
    border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cstyle%3Epath%7Banimation:stroke 5s infinite linear%3B%7D%40keyframes stroke%7Bto%7Bstroke-dashoffset:776%3B%7D%7D%3C/style%3E%3Cpath d='M1.5 1.5 l97 0l0 97l-97 0l0 -97' stroke-width='3' stroke='red' stroke-dasharray='388'/%3E %3C/svg%3E") 2;
    margin-bottom: 30px;
}

.ultimate {
    background: repeating-radial-gradient(circle, red, yellow 10%, green 15%);
}

img {
    border: 8px solid;
    border-image: linear-gradient(45deg, gold, fuchsia) 1;
    max-width: 200px;
    display: block;
    margin: 10px auto;
}

.sova-portrait {
    border-width: 15px;
    border-style: dotted;
    border-color: yellow green blue red;
}

.rotated-image {
    transform: rotate(-5deg);
}

/* BLINKENDER TEXT ANIMATION */
.blinking-text {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
        color: yellow;
    }
}

/* MARQUEE LAUFSCHRIFT */
.marquee {
    width: 100%;
    overflow: hidden;
    background-color: #333;
    color: white;
    font-size: 24px;
    border: 5px solid lime;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
}


/* DREHENDES ICON ANIMATION */
.spinning-icon {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
