html {
  font-size: 18px;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  object-fit: cover;
  height: auto;
}
a {
  text-decoration: none;
}

body {
  max-width: 88rem;
  margin: 0 auto;
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: normal;
  background-color: rgba(51, 42, 55, 0.93);

  color: aliceblue;
  display: block;
}

.cv h2 {
  text-decoration: underline;
}

.cv a {
  color: aliceblue;
}

#pageheader {
  display: grid;
  grid-template-areas:
    "naam naam"
    "blanc nav";
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  padding: 1rem;
  background-color: rgb(143, 132, 152);
  color: white;
  border-radius: 0.4rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
#naam {
  grid-area: naam;
  font-size: 4rem;
  margin: 0 0.5rem;
}

h1,
h2,
nav {
  font-family: "Jersey 15", serif;
  font-weight: 400;
  font-style: normal;
  color: rgb(240, 210, 239);
  text-decoration: dashed;
}
h1 {
  grid-area: h1;
  font-size: 6rem;
  margin: 0.5rem 0.5rem;
}

.navigation {
  grid-area: nav;
  display: inline;
}
.home {
  display: grid;
  grid-template-areas:
    "fig_left h1"
    "fig_left h1"
    "fig_left fig_right";
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.left {
  grid-area: fig_left;
}

.right {
  grid-area: fig_right;
}

aside {
  grid-area: aside;
}

footer {
  grid-area: footer;
  text-align: center;
}

.inspiration {
  float: left;
}

ul {
  list-style-type: disc;
}

#projects li {
  display: block;
}
nav ul li a {
  color: rgb(115, 80, 116);
  font-size: 2rem;

  padding: 0.2rem 0.2rem;
}

nav ul li a:hover,
nav ul li a:focus {
  background-color: #9552b947;
  border-radius: 0.3125rem;
}

li {
  display: inline;
  margin: 0 1rem;
}

.navigation ul {
  list-style-type: none;
}

figure {
  max-width: 50%;
  clear: both;
  max-width: 50%;
  margin-bottom: 1rem;
  padding: 1rem;
}
