body {
  font-family: sans-serif;
  background-color: antiquewhite;
  font-size: 20px;
  display: grid;
  justify-content: center;
}

h1,
h2,
h3 {
  color: rgb(211, 147, 157);
}

nav {
  display: flex;
  justify-content: right;
  align-items: center;
}

nav a {
  color: rgb(184, 55, 77);
  text-decoration: none;
  padding: 10px;
  margin: 5px;
  background: rgb(247, 177, 145);
  border-radius: 10px 0 15px 0;
}

nav a:hover {
  transition: all 1s ease-out;
  background: rgb(192, 107, 107);
  color: white;
}

img {
  width: 100%;
  height: auto;
}

nav img {
  margin-right: auto;
  padding-left: 50px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

main {
  max-width: 750px;
  margin: 30px;
}

#inleiding {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#inleiding img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
}
.tweekoloms {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 1fr;
}

section {
  /* border-bottom: solid 1px red; */
  margin-bottom: 100px;
}

hr {
  border-top: 1px solid rgb(180, 33, 58);
}
