
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #0d1b2a;
    color: #ffffff;
}


.maintenance-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}


h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: slideIn 1.5s ease-out;
}
p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    animation: fadeIn 2s ease-in-out;
}


.snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('snowflake.png') repeat;
    opacity: 0.5;
    animation: snowFall 10s linear infinite;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes snowFall {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 1000px;
    }
}

.snowflake {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    animation: fall 5s linear infinite, sway 2s ease-in-out infinite;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

@keyframes sway {
    from {
        transform: translateX(-20px);
    }
    to {
        transform: translateX(20px);
    }
}

