/* Blog.css */
.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 20px;
    box-sizing: border-box;
}

.coming-soon {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    animation: blink 1.5s infinite ease-in-out;
    text-align: center;
}

/* Animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Responsive text size */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 1.5rem;
    }
}