/* Algemeen voor alles */
* {
 	box-sizing: border-box;
	line-height: 30px;
	font-family: "Inter", sans-serif;
}

/* Gele header bovenaan de website */
header {
  color: black;
  background-color: #F2E2C4;
  height: 150px;
  text-align: center;
}

header h1 {
  line-height: 150px;
}

/* Menu aan de zijkant */
aside {
  float: left;
  width: 20%;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  background-color: #A7D3F1;
  color: black;
}

/* Menu groen als je met je muis er over gaat */
.menu a:hover {
  background-color: #A8C686;
}

/* Actief menu is groen */
.menu a.active {
  background-color: #A8C686;
  color: white;
}

.text {
  float: right;
  width: 80%;
  text-align: center;
}
ul {
	text-align: left;
	padding: 0px 200px 0px 200px;
}
h1 {
	line-height: 60px;
	margin: 30px 0 15px;
}
h2 {
	line-height: 50px;
	margin: 25px 0 15px;
}

/* Hoofd tekst gedeelte */
main {
  padding: 10px 30px;
  font-size: 20px;
}

/* Links gekleurd */
main a {
	color: #A7D3F1;
	text-decoration:none;
}
main a:hover {
	color: #A8C686;
}

/* Gallerij met foto's */
.images {
  text-align: center;
    object-fit: cover;
}
.images img {
  width: 500px;
  height: 350px;
  border-radius: 25px;
  margin: 40px;
}

/* Tabel */
table, th, td {
	border: 1px solid black;
	border-collapse: collapse;
	text-align: center;
	padding: 0 7px;
}
.table {
	margin: 0 auto;
}

/* Footer onderaan */
.footer {
  width: 100%;
  height: 300px;
}

/* Responsive voor als beeld smaller is dan 768 pixels */
@media (max-width: 768px) {
  aside {
    width: 100%;
    float: none;
  }  
   img {
        width: 240px;
    }
	ul{
	padding: 0px 20px 0px 20px;
	 }
}