@media (max-width: 1279px) {
  body {
    grid-template-rows: auto auto;
    grid-template-areas: "slides" "bookmark";
  }

  nav {
    display: block;
    z-index: 1000;
  }

  nav > .menu > img {
    width: 3em;
    position: fixed;
    top: 1em;
    left: 1em;
  }

  nav > input {
    display: none;
  }

  nav > label {
    position: fixed;
    top: 1em;
    right: 1em;
    display: block;
    width: 3em;
    height: 3em;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
  }

  nav > label > div {
    width: 3em;
    height: 0.5em;
    margin: 0 0 0.5em 0;
    background-color: #9e1559;
    transition: all 0.3s;
  }

  nav > input:checked + label > div:nth-child(1) {
    transform: translateY(1em) rotate(45deg);
  }

  nav > input:checked + label > div:nth-child(2) {
    opacity: 0;
  }

  nav > input:checked + label > div:nth-child(3) {
    transform: translateY(-1em) rotate(-45deg);
  }

  nav > .menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    transform: translateX(100%);
    transition: all 0.3s;
  }

  nav > input:checked ~ .menu {
    transform: translateX(0);
  }

  nav > .menu a {
    display: block;
    margin: 0;
    padding: 0;
    color: #ddd;
    font-size: 1.5em;
    font-weight: 800;
    text-decoration: none;
  }

  nav > .menu a:hover {
    color: #eee;
  }

  /* << BOOKMARKS >> */

  .bookmarks {
    width: 100%;
  }

  .bookmark {
    width: 100%;
    padding: 2em 1em;
    color: #ddd;
    font-size: 1em;
  }

  .bookmark > a {
    display: none;
  }

  .bookmark:nth-child(odd) {
    background-color: #444;
  }

  .bookmark:nth-child(even) {
    background-color: #383838;
  }

  .bookmark > h1 {
    margin: 0 0 0.5em 0;
    font-weight: 800;
    text-transform: uppercase;
  }

  .bookmark > .content > h2 {
    margin-bottom: 0.25em;
  }

  .bookmark > .content > p {
    text-align: justify;
    margin: 0;
  }

  .bookmark > .content > img {
    width: 100%;
    border-radius: 0.5em;
    margin: 0.5em 0;
  }

  .bookmark > .content > span {
    color: #ccc;
    display: block;
  }

  .bookmark > .content > span > a {
    color: #ddd;
    font-weight: 600;
    text-decoration: none;
  }

  .bookmark > .content > span > a:hover {
    color: #eee;
  }


  .logo {
    width: 80%;
    max-width: 350px;
  }

}
