/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: darkgreen;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sky {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cow {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 100px;
    height: 60px;
    background-color: brown; /* Placeholder for cow body */
    border-radius: 50%;
    animation: flyCow 10s linear infinite;
}

/* Keyframes for cow flying */
@keyframes flyCow {
    0% {
        left: -100px;
        bottom: 0;
        transform: rotate(0deg);
    }
    25% {
        left: 25%;
        bottom: 50%;
        transform: rotate(10deg);
    }
    50% {
        left: 50%;
        bottom: 0;
        transform: rotate(0deg);
    }
    75% {
        left: 75%;
        bottom: 50%;
        transform: rotate(-10deg);
    }
    100% {
        left: 100%;
        bottom: 0;
        transform: rotate(0deg);
    }
}
.cow {
    background-image: url('https://www.gold-souk.com/en/wp-content/uploads/2022/11/Fine-Gold-Rose-1Oz-127A7214-Front.jpg');
    background-size: cover;
    width: 150px;
    height: 150px;
}



