body {
    margin: 0;
    padding: 0;
    background-color: #f4cf42;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.comeing-soon-templete {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-data {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: auto;
}

.logo-center {
    max-width: 280px;
    margin-bottom: 20px;
}

.update-data h5 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.4px;
    margin: 0;
}

.dots-inline {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
}

.dots-inline span {
    width: 5px;
    height: 5px;
    margin-left: 3px;
    background-color: #333;
    border-radius: 50%;
    animation: dotFade 1.4s infinite ease-in-out both;
}

.dots-inline span:nth-child(1) {
    animation-delay: 0s;
}

.dots-inline span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots-inline span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotFade {
    0%, 80%, 100% {
        opacity: 0.2;
    }
    40% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .update-data h5 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.4px;
    margin: 0;
}
}