body {
    margin: 0;
    padding: 0;
    background-image: url("backdrop.png");
    background-size: cover;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

.container {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: #ff69b4;
}

.cat-image-container {
    position: relative;
}

.cat-image {
    width: 200px;
    height: 200px;
    background-image: url("gifcat.gif");
    background-size: cover;
    margin: 20px auto;
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    animation: sparkles 3s linear infinite;
}

@keyframes sparkles {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}


.flower {
    width: 50px;
    height: 50px;
    background-image: url('flower.png'); 
    background-size: cover;
    position: absolute;
    animation: rotateAndFall 2s linear infinite; 
}

@keyframes rotateAndFall {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
