/* ========== Algemene reset / basisstijl ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Basisstijl voor html en body */
body {
  font-family: "Franklin Gothic Book", sans-serif;
  background: url('../images/Marble.jpg') repeat center center;
  height: 100%;
  color: #fff;
  padding: 20px;
}

label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 6px;
    margin-top: 5px;
    background-color: #ffffff;
    color: #000;
    border: 1px solid #ccc;
}

input[type="submit"],
input[type="reset"] {
    margin-top: 15px;
    padding: 8px 15px;
}

.contact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.form-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    width: 550px;
    flex-grow: 1;
    max-width: 700px;
    border: 1px solid #808080;
}

.gif-container {
    flex-shrink: 0;
}

.required {
    color: red;
}