     /* Reset-Styles */
     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        background-image: url(/images/pexels-rakicevic-nenad-233369-1262302-bigger.jpg);
        background-size: cover;
    }
    
    body, html {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: Arial, sans-serif;
        color: #ffffff;
        overflow: hidden;
    }
    
    
    .container {
        text-align: center;
        padding: 20px;
        
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    p {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    .contact-info a {
        color: #ffffff;
        text-decoration: underline;
    }
    
    .loading-dots {
        margin-top: 50px;
        margin-bottom:50px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    
    .loading-dots span {
        width: 15px;
        height: 15px;
        background-color: #ffffff;
        border-radius: 50%;
        display: inline-block;
        animation: loadingDotsAnimation 1.5s ease-in-out infinite;
    }
    
    .loading-dots span:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .loading-dots span:nth-child(3) {
        animation-delay: 0.6s;
    }
    
    @keyframes loadingDotsAnimation {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    .poweredby {
        position: absolute;
        width: 100%;
        height:20px;
        top: 30px;
        left: 0;
        color:#fff;
        text-align: center;
        font-size:12px;
    }
    .copyright {
        position: absolute;
        width: 100%;
        height:20px;
        bottom: 10px;
        left: 0;
    
        color:#fff;
        text-align: center;
        font-size:12px;
    }
    