/* Yleinen tyylitys */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background: black;
    color: white;
}

/* Taustalla oleva tähtikenttä */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Lentävä lehmä */
#flying-cow {
    position: fixed;
    top: -150px;
    left: -200px;
    z-index: 100;
    pointer-events: none;
}

#flying-cow img {
    width: 150px;
    animation: fly-cow 10s linear infinite;
}

@keyframes fly-cow {
    0% {
        transform: translate(-200px, 0);
    }
    50% {
        transform: translate(100vw, 50vh) rotate(20deg);
    }
    100% {
        transform: translate(-200px, -100vh);
    }
}

/* Keskiosan laatikko */
.content {
    position: relative;
    width: 60%;
    margin: 10% auto;
    background: rgba(32, 32, 32, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}
