/* style.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.animation {
    position: relative;
    font-size: 3em;
    font-family: Arial, sans-serif;
}

.text {
    position: absolute;
    opacity: 0;
    transition: opacity 1s;
}

.text#autyzm {
    left: 0;
}

.cat {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('kicius.webp'); /* Add your cat image */
    background-size: cover;
    opacity: 0;
    transition: opacity 1s, transform 1s;
}

.text#mi {
    position: absolute;
    opacity: 0;
    transition: opacity 1s;
}

.text#pl {
    position: relative; /* Change from absolute to relative */
    left: 200px; /* Adjust the horizontal position as needed */
    opacity: 0;
    transition: opacity 1s;
}


.visitor-count {
    margin-top: 200px; /* Adjust this value to move the text down */
    text-align: center;
    font-size: 1.2em;
}