.titel {
    background-image: url("HeaderAchtergrond_HulsenSchilderwerken.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.titel h1 {
    color: white;
    font-size: 60px;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
    text-align: center;
}

/* In contact.css */
form {
    display: flex;
    flex-direction: column;
    max-width: 800px; /* Stel de maximale breedte in voor een betere leesbaarheid */
    margin: 50px auto; /* Centreer het formulier */
}

label {
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    /* Voeg hier andere gewenste stijlen toe */
}

button[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #F79228;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}

button[type="submit"]:hover {
    background-color: #bd701d;
    transform: scale(1.1);
    transition: 0.5s;
}

@media (max-width: 1023px) {
    form {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    form {
        max-width: 300px;
    }
}
