body {
    margin: 0;
    padding: 0;
    font-family: Andromeda, Poppins, Arial, Helvetica, sans-serif;
    background-image: url("background.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.maintenance-container {
    text-align: center;
    text-shadow: 2px 2px rgb(2, 208, 150);
}

h1 {
    color: white;
    font-size: 2.2vw; /* Responsive font size */
}

p {
    color: white;
    font-size: 1.6vw; /* Responsive font size */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hologram.png') center center no-repeat;
    background-size: 70%;
    opacity: 0.7;
    z-index: 0;
}

.text{
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 1;
}

.copyright{
    transform: translate(0%, 130%);
}

/* Responsibility */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2vw; /* Adjusted font size for smaller screens */
    }

    p {
        font-size: 1.7vw; /* Adjusted font size for smaller screens */
    }
    
    .text{
        text-shadow: none;
    }
    body {
        background-size: contain; /* Adjusted background size for smaller screens */
    }
}
