body {
    background: #00091b;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

h1 {
    font-family: "Poppins", sans-serif;
    text-align: center;
    line-height: 1;
    font-size: 60px;
    margin-bottom: 0;
    font-weight: 700;
}

a,
div,
p,
input,
button {
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-weight: normal;
}

.container {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    max-width: 600px;
    transform: translate(-50%, -50%);
    animation: fadeInOpacity 2s ease;
    opacity: 1;
    text-align: center;
    /* Ensure center alignment of child elements */
}

.dot {
    color: #ff2e9a;
}

button {
    margin-top: 10%;
    background-color: #ff2e9a;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10% auto 0;
    box-shadow: 0 0 100px -5px #ff2e9a;
}

button:hover {
    background-color: #ff007a;
}

button:active {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(0.98);
}

.text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.counter {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.footer {
    text-align: center;
    margin-top: 20%;
    padding-bottom: 10px;
}

.footer hr {
    border: 1px solid #ff2e9a;
    margin: 0 auto;
}

.footer p {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    margin-top: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between the items */
}

.footer-item {
    margin: 0;
}

@keyframes popUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .container {
        width: 90%;
    }

    button {
        font-size: 50px;
        padding: 15px;
    }

    .footer {
        margin-top: 30%;
    }
}

@media (max-width: 480px) {
    button {
        font-size: 40px;
        padding: 12px;
    }

    .footer {
        margin-top: 40%;
    }
}

/* Styles for the cat image */
.cat-image {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #ff2e9a;
    animation: popUp 1s ease, fadeOut 5s ease 4s forwards;
    box-shadow: 0 0 100px -5px #ff2e9a;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .cat-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .cat-image {
        width: 80px;
        height: 80px;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}