﻿.maintenance-body {
    font-family: 'Open Sans', sans-serif;
    background-color: rgb(9, 79, 163); /* Background color */
    color: #fff; /* White text for contrast */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin: 0;
    transition: background-color 0.3s ease;
}

.maintenance-h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0f335e;/* #fff; /* White text */
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.maintenance-p {
    font-size: 1.2rem;
    color: #0f335e; /*#fff; /* White text */
    margin-bottom: 0px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}

.maintenance-p-last {
    font-size: 1.2rem;
    color: #0f335e; /*#fff; /* White text */
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}

.maintenance-institution-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f335e; /*#fff;/* White text */
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

/* Fade-in animation */
    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
