﻿html {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; /* Ensure it covers the entire viewport */
    background-image: url('maintenanceBackground.png');
    background-size: cover; /* Change to cover to fill the viewport */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
    z-index: 1;
}


.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Much lighter gradient with less opacity */
    background: linear-gradient( 90deg, rgba(248,224,175,0.9831582291119573), rgba(232,237,130,0.8318977249102766), rgba(130,237,236,0.8318977249102766), rgba(255,233,181,0.9747548677674195) );
    background-size: 400% 400%;
    -webkit-animation: gradientAnimation 20s ease infinite;
    -moz-animation: gradientAnimation 20s ease infinite;
    animation: gradientAnimation 20s ease infinite;
    z-index: 2;
}
.content {
    text-align: center;
    color: white;
    z-index: 3;
    margin: 0 auto 30px;
    padding: 20px;
    position: relative;
}

.logo {
    width: 400px;
    height: 160px;
    margin-top:10px;
    position: relative; /* Ensures it stays within its container */
    z-index: 4; /* Keeps it above the background */
}

h1 {
    font-size: 2.5em;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#lottie-animation {
    z-index: 5;
    position: absolute;
    top: -130px; /* Move this up to be above the "S" */
    left: calc(50% + 40px); /* Increase left to better center above the "S" */
    width: 200px;
    height: 200px;
}
.rapair {
    z-index: 3;
    top:unset;
    width:230px;
    height:190px;
    margin-left:70px;
    position:absolute;
}



@-webkit-keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-moz-keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
