* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(242, 242, 242);
}

.header {
  margin: 20px;
  display: flex;
}

h1 {
  color: rgb(33, 33, 33);
}

.title {
  font-family: "Baskervville", serif;
  font-size: 18px;
  color: rgb(33, 33, 33);
  padding-right: 30px;
  text-decoration: none;
}

.container {
  margin: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  column-gap: 20px;
}

.paragraph {
  font-family: "Arimo", sans-serif;
  font-size: 16px;
  color: rgb(33, 33, 33);
  line-height: 20px;
  font-weight: 500;
  margin-top: 20px;
}

p > a {
  font-style: italic;
  font-size: 16px;
  color: rgb(33, 33, 33);
  line-height: 20px;
  padding-top: 4px;
  text-decoration: none;
}

.intro-text {
  font-family: "Arimo", sans-serif;
  font-size: 16px;
  color: rgb(33, 33, 33);
  line-height: 20px;
  font-weight: 300;
  grid-row: 1;
  grid-column: 4 / 5;
}

.chair-text {
  grid-row: 1;
  grid-column: 1;
}

.chair-image {
  grid-row: 1 / 20;
  grid-column: 2 / 4;
  width: 100%;
}
