body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(90deg, #cfecd0, #ffc5ca);
}

footer {
    margin: 0;
    width: 100%;
    background-color: rgba(110, 181, 255 , .3);
    color: white;
    text-align: center;
    bottom: 0;
    position:static;
}

form {
    margin-left: 40vw;
}

.imgContainer {
    position: relative;
  }
  
  .text-block {
    position: absolute;
    bottom: 5vh;
    right: 7vw;
    width: 80vw;
    background-color: rgba(0, 0, 0, .5);
    color: white;
    text-align: center;
    padding-left: 2vw;
    padding-right: 2vw;
  }

 #inleiding {
    margin-left: 25vw;
    width: 50vw;
    text-align: center;
  }

  @media screen and (max-width: 600px) {
    #inleiding {
        width: 100vw;
        text-align: center;
        margin-left: 0;
    }

    form {
        margin-left: 25vw;
    }

    footer {
        bottom: 0;
    }
}
h2{
    text-align: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
}
h4{
    text-align: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
}
h1{
    text-align: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
}


form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-weight: bold;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-weight: bold;
}

form textarea {
    height: 100px;
    resize: vertical;
}

form input[type="submit"] {
    margin-top: 15px;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #555;
}
