body {
  font-size: 15px;
  --padding: 2.5rem;
  --max-width: 900px;
}

main,
footer {
  padding: var(--padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

header {
  background-image: url("./images/ok-media-producties-marc-olde-kalter.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /* also cover the margin with the image */
  background-position: center;

  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;

  color: #eeebe3;
  padding: 10rem var(--padding);
}

header ul#socials {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.main-container {
  background-color: #eeebe3;
}

.footer-container {
  background-color: #333;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 2.5rem;

  color: #eee;
}

footer section ul li {
  padding: 0.5rem 0;
}

footer section ul.with-dot {
  list-style: square;
  margin-left: 1rem;
}

img {
  margin: 1rem 0;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.center {
  display: flex;
  justify-content: center;
}

.text-center {
  text-align: center;
}
