<style>
div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
  }

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
  }

body{
    background-color:    rgb(247, 231, 206);
	}

img {
  display: block;
  max-width:90vw;
  max-height:90vh; 
  width: auto;
  height: auto;
  background-color: red;
}

/* unvisited link */
a:link {
  text-decoration: none;
  color: rgb(156, 125, 105);
}

/* visited link */
a:visited {
  text-decoration: none;
  color: rgb(156, 125, 105);
}

/* mouse over link */
a:hover {
  text-decoration: none;
  color: orange;
}

/* selected link */
a:active {
  text-decoration: none;
  color: rgb(156, 125, 105);
}

.container {
  display: flex; /* Plaatst de divs naast elkaar */
  /* justify-content: space-between; /* Verdeelt de ruimte evenredig */
  gap: 20px; /* Optioneel: ruimte tussen de divs */
}

.boxl {
  flex: 1; /* Zorgt dat alle drie de divs even breed worden */
	text-align: right;
	font-family: "Helvetica",  monospace;
	font-weight: bold;
	}
  
.boxm {
  flex: 1; /* Zorgt dat alle drie de divs even breed worden */
	text-align: center;
	font-family: "Helvetica", monospace;
	font-weight: bold;
	}
  
.boxr {
  flex: 1; /* Zorgt dat alle drie de divs even breed worden */
	text-align: left;
	font-family: "Helvetica", monospace;
	font-weight: bold;
	}
  
</style>