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

html {
    height: 100%;
}

body {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
    background-color: #1a1a1a;
    background-image: url(/images/bg-landingpage.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    text-align: center;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #ffffff;
}

.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: #ffffff;
    text-align: center;
    font-size: 12px;
}

.copyright {
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: 10px;
    left: 0;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
}

a {
    color: #ffffff;
    text-decoration: none;
}
