body {
  margin: 0;
  padding: 0;
  background: url('Bouwen\ en\ Brouwen\ Skyline.png') repeat-x;
  background-position: bottom;
  background-attachment: fixed;
  background-color: #d3eae4;
  display: flex;
  justify-content: center;
  text-align: center;
}

.content {
  width: 80%;
  max-width: 800px;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4em;
  margin: 20px 0;
  line-height: 0.7;
  color: #7c7461;
}

p {
  line-height: 1.6;
  font-size: 1.2em;
  margin-bottom: 40px;
  font-family: 'Freight Sans', sans-serif;
  color: #7c7461;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  position: relative;
  margin-bottom: 100px;
}

.image-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s;
}

.image-grid img:hover {
  transform: scale(1.05);
}

.vertical-text {
  position: absolute;
  top: 15px;
  right: 8px;
  color: lightgray;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.8em;
  font-family: 'Poppins', sans-serif;
}

.label {
  position: absolute;
  bottom: 3px;
  right: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px;
  font-size: 0.6em;
  border-radius: 3px;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
}

.label:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.yellow {
  color: #fcee21;
}

.white {
  color:white;
}
a:link {
  text-decoration: none;
  color: white;
}

a:visited {
  text-decoration: none;
  color: #7c7461;
}

a:hover {
  text-decoration: underline;
  color:white;
}

a:active {
  text-decoration: underline;
  color: #fcee21;
}