/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full screen background */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container for the maintenance box */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/* Styling the maintenance box */
.maintenance-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 2s ease-in-out;
}

/* Animating the fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header styling */
h1 {
    font-size: 36px;
    color: #1a73e8;
    margin-bottom: 10px;
    animation: slideUp 2s ease-in-out;
}

/* Animating the slide-up effect for header */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
    animation: slideUp 2s ease-in-out;
}

p {
    color: #888;
    font-size: 16px;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out;
}

/* Spinner Animation */
.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #1a73e8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1.5s linear infinite;
    margin: 20px auto;
}

/* Spinner rotation animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Countdown text */
.countdown p {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .maintenance-box {
        padding: 30px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }
}