/* Reset en basisstijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    font-family: 'Candara', sans-serif;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.main-image {
    max-width: 800px;
    max-height: 800px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.construction-text {
    font-family: 'Candara', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 0px;
}

/* Responsive aanpassingen */
@media (max-width: 1024px) {
    /* iPad (portrait en landscape) */
    .main-image {
        max-width: 700px;
        max-height: 700px;
    }
    .construction-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    /* Mobiele telefoon */
    .main-image {
        max-width: 90vw;
        max-height: 90vw;
    }
    .logo {
        max-width: 80vw;
    }
    .construction-text {
        font-size: 18px;
    }
}