@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    background: linear-gradient(to right, #ff4b1f, #ff9068);
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.maintenance-container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 40px;
    border: 2px solid white;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}

h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    position: relative;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: white;
    background-color: #ff4b1f;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff9068;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
