@font-face {
  font-family: Berkshire; /* set name */
  src: url(twine/fonts/BerkshireSwash-Regular.ttf) format("truetype");
}

@font-face {
  font-family: EBGaramond; /* set name */
  src: url(fonts/EBGaramond-Regular.ttf) format("truetype");
  font-style: normal;
}

@font-face {
  font-family: EBGaramond; /* set name */
  src: url(fonts/EBGaramond-Italic.ttf) format("truetype");
  font-style: italic;
}

@font-face {
  font-family: EBGaramond; /* set name */
  src: url(fonts/EBGaramond-Bold.ttf) format("truetype");
  font-weight: bold;
}
body {
  background: #ede4d4;
  color: #354145;
}

h1 {
  font-family: Berkshire, serif;
  font-size: 36px;
}

p {
  font-family: EBGaramond, serif;
  font-size: 18px;
}

header, nav, section {
  border: none;
}

header {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}

nav {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  height: max-content;
}

section {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  height: max-content;
  padding-left: 10px;
  padding-right: 10px;
}

footer {
  grid-row: 3 / 4;
  grid-column: 1 / 3;
  border-top: black 1px solid;
  padding-left: 10px;
}

.container {
  max-width: 840px;
  margin: 50px auto;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 200px auto;
  background: #fef8ec;
}

.logo {
  padding-left: 10px;
}


