body {
    background-color: #f5deb3;
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

section {
    font-family: 'Times New Roman', Times, serif;
    font-size: medium;
}
article{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
a {
    display: flex;
    flex-direction: column;
}
footer {
    display: flex;
    justify-content: center;
}
nav {
  display: flex;
  justify-content: flex-end; 
}

h1, h2, h3, ul, article, ol, p, a {
    font-weight: lighter;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

img {
  width: 700px;
  float: right;
  margin-left: 20px;
}

@media (max-width: 768px) {
  img {
    float: none;
    display: block;
    margin: 100px auto;
  }
}

p {
    font-size: medium;
}

h3 {
    font-size: x-large;

}

.contact-form {
  margin-top: auto;         
  background: rgb(210, 187, 145);
  width: 320px;
  max-width: 90%;          
  padding: 20px;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  justify-content: center;
}

label {
  display: block;
  margin-top: 10px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background-color: rgb(188, 165, 124);
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: wheat;

}

.melding {
  margin-top: 15px;
  color: gray;
  display: none;
}




