/* Algemene opmaak */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  font-weight: 300;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.logo {
  width: 380px;
  margin-bottom: 40px;
}

h1 {
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.coming-soon {
  font-style: italic;
  margin-top: 30px;
  margin-bottom: 30px;
}

.contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.photos img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}