

/* Algemeen */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}



html, body {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #fff;
}

/* Header */
#header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(images/voorpagina_achtergrond.gif);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: 30%;
    z-index: 1;
}

#header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% black */
    z-index: 0;
}

#header > * {
    position: relative;
    z-index: 1;
}


#header {
    width: 100%;
    height: 100vh;
    background-image: url(images/voorpagina_achtergrond.gif);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border: 50px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.logo-circle img {
    padding-left: 18px;
}

.coming-title {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.divider {
    width: 45%;
    border: 1px solid #ffffff;
    margin: 0 auto 20px;
}

.coming-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.credits {
    padding-top: 40px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.credits a {
    color: #ffffff;
    text-decoration: underline;
}

.social-icons i {
    margin: 0 10px;
    font-size: 1.2rem;
    cursor: pointer;
}
