* {
    margin: 0;
    text-decoration: none;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Contact */
#contact {
    width: 100%;
    height: 100vh;
    background: url(media/background.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -450px;
    background-color: #020201;
}

contact-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35vh;
}

contact-title h1 {
    color: #b99844;
    font-weight: 800;
    font-size: 85px;
    font-family: 'Noto Sans', sans-serif;
    margin-top: 100px;
}



info-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    height: 65vh;
    width: 100%;
}

info-container .gegevens-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50vw;
    background-color: #1e1e1edd;
}

info-container .gegevens {
    margin-top: 85px;
    padding-left: 40px;
    padding-right: 40px;
}

info-container h2 {
    position: relative;
    color: #dfdfdf;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
    margin-bottom: 15px;
}

info-container .gegevens .locatie-gegevens h2 {
    margin-bottom: 0;
    font-weight: 400;
    color: #bdbdbd;
}

info-container .gegevens .locatie-gegevens {
    margin-bottom: 15px;
}

info-container .gegevens span {
    position: absolute;
    margin-left: -35px;
    margin-top: 12px;
    filter: invert(85%);
    scale: 1.20;
}

info-container .gegevens .contact-gegevens h2 {
    margin-bottom: 0;
    font-weight: 400;
    color: #bdbdbd;
}



info-container .formulier-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50vw;
    background-color: #203d2fdf;
}

info-container .formulier {
    margin-top: 85px;
    padding-left: 40px;
    padding-right: 40px;
}

info-container form {
    display: flex;
    flex-direction: column;
    min-width: 400px;
}

info-container input {
    color: #dfdfdf;
    border: 2px solid #bdbdbd;
    background-color: transparent;
    padding: 10px;
    margin-bottom: 10px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    outline: none;
}

info-container textarea {
    min-width: 400px;
    color: #dfdfdf;
    border: 2px solid #bdbdbd;
    background-color: transparent;
    padding: 10px;
    margin-bottom: 10px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    outline: none;
    resize: vertical;
    max-height: 200px;
    min-height: 20px;
}

info-container input[type=submit] {
    transition: 0.25s;
    cursor: pointer;
    background-color: #2b4e3c;
    border: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #bdbdbd;
    padding: 12px;
}

info-container input[type=submit]:hover {
    background-color: #35614a;
    color: #dfdfdf;
}
/* Phone display */
@media (max-width: 1000px) {
    info-container {
        flex-direction: column-reverse;
    }

    info-container form {
        width: 100px;
    }

    info-container textarea {
        min-width: 100px;
    }

    /* Gegevens */
    info-container .gegevens-container {
        width: 100%;
    }

    info-container .gegevens {
        margin: 35px;
    }

    /* Formulier */
    info-container .formulier-container {
        width: 100%;
    }

    info-container .formulier {
        margin-top: 35px;
        margin-bottom: 35px;

    }

    /* Contact */
    contact-title {
        visibility: hidden;
    }
}