body {
    margin: 0;
}

.splash-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(45deg, #027B5B, #02565B);
    background-size: 600% 100%;
    animation: gradient 3s linear infinite;
    animation-direction: alternate;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dots::after {
    content: "";
    animation: dots 3s steps(3, end) infinite;
    color: #f9d748;
}

@keyframes dots {
    0% {
        content: ".";
    }

    33% {
        content: "..";
    }

    66% {
        content: "...";
    }

    100% {
        content: ".";
    }
}

.splash-text span {
    display: inline-block;
    font-family: "Comic Sans MS", sans-serif;
    font-size: 80px;
    font-weight: 900;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);


}

.num-11 {
    color: #f9d748;
    background-color: #027b5b;
    border-radius: 50%;
    padding: 10px 18px;
    /* daire görünüm için ayar */
    margin-right: 8px;
}

.text-data {
    color: #027b5b;
    margin-right: 4px;
}

.text-pot {
    color: #f9d748;
}

@keyframes gradient {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 100%
    }
}

@media only screen and (min-width: 600px) {
    .splash-wrapper img {
        width: 202px;
        /* Set the width for tablets/desktops */
    }
}

/* Media Query for Phones */
@media only screen and (max-width: 599px) {
    .splash-wrapper img {
        width: 166px;
        /* Set the width for phones */
    }
}