@charset "UTF-8";
/* Body
-------------------------------------------------- */
body {
  background-color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.42;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

#app {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header" "nav" "main" "footer";
}

#app > main {
  grid-area: main;
  display: grid;
  grid-template-columns: 1fr min(80ch, 100% - 64px) 1fr;
  grid-column-gap: 32px;
}
#app > main > * {
  grid-column: 2;
}

.notebook {
  margin-bottom: 12px;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.notebook > .photo > img {
  object-fit: cover;
  width: 100%;
  max-height: 100%;
}
.notebook > .content {
  padding-left: 16px;
  white-space: pre-line;
  vertical-align: top;
}
.notebook > .content > .title {
  font-weight: bold;
  font-size: 22px;
  height: fit-content;
  block-size: fit-content;
}
.notebook > .content:hover {
  background: #eee;
}

#app .full-width {
  width: 100%;
  grid-column: 1/-1;
}

  #app > header {
  grid-area: header;
}

#app > nav {
  grid-area: nav;
}
#app > nav ul {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 10px;
  justify-content: center;
  justify-items: center;
}
@media (min-width: 600px) {
  #app > nav ul {
    grid-template-columns: 1fr repeat(3, fit-content(50px));
    grid-gap: 20px;
    justify-items: end;
  }
}
#app > nav .fullwidth {
  grid-column: 1/4;
}
@media (min-width: 600px) {
  #app > nav .fullwidth {
    grid-column: 1/2;
    justify-self: start;
  }
}

  #app > footer {
  grid-area: footer;
}

/*# sourceMappingURL=style.css.map */
