body {
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 50px auto;
}

h1 {
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.comingSoon {
    font-size: 24px;
    font-weight: bold;
}

.blink {
    animation: blinker 1s linear infinite;
}



@media screen and (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .comingSoon {
        font-size: 20px;
    }
}
.soccer-ball {
    position: absolute;
    width: 30px;
    animation: fall 5s linear infinite;
}
/* Add this to your existing CSS file */

.soccer-ball {
    width: 50px; /* Adjust size as needed */
    position: absolute;
    animation: fall 2s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}
