

#menu__toggle {
    opacity: 0;
  }
  
  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }
  
  .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 20px;
  
    width: 26px;
    height: 26px;
  
    cursor: pointer;
    z-index: 1;
  }
  
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
  
    width: 100%;
    height: 2px;
  
    background-color: black;
  
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  
  .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
  
    width: 200px;
    height: 100%;
  
    margin: 0;
    padding: 80px 0;
  
    list-style: none;
  
    /* background-color: #000000;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2); */
  
    transition-duration: .25s;
  }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
  
    color: black;
    font-size: 20px;
    font-weight: 600;
  
    text-decoration: none;
  
    transition-duration: .25s;
  }


  .container-uno {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .container-dos {
    display: grid;
    margin-left: 20%;
    grid-auto-rows: 30px;
  }

  .le {
    grid-column: 34;
    grid-row: 3;
    transform: rotate(-90deg);
  }

  .collection {
    grid-column: 30;
    grid-row: 5;
  }

  .of {
    grid-column: 32;
    grid-row: 12;
    writing-mode: vertical-rl;
  }

  .button {
    grid-column: 34;
    grid-row: 17;
  }

  a {
    text-decoration: underline;
    color: black;
  }

  .failure {
    grid-column: 30;
    grid-row: 15;
  }

  .description {
    grid-column:35;
    grid-row: 18;
  }

  /* font-size responsiveness */

  /* If screen size is 1000px wide or less, set font-size of <div> to 15px */
@media screen and (max-width: 1000px) {
    body {background-color: rgb(0, 255, 0);}
    .menu__item {font-family: "Jersey 15", sans-serif;}
    .menu__item:hover {
      color: rgb(0, 47, 255);}
    .le {font-size: 30px; font-family: "Pinyon Script", cursive;}
    .collection {font-size: 50px; font-family: "Jersey 15", sans-serif;}
    .of, .button {font-size: 40px; font-family: "Kode Mono", monospace;}
    .failure {font-size: 40px; font-family: "Jersey 20 Charted", sans-serif;}
    .description {font-size: 22px; font-family: "Jersey 20 Charted", sans-serif;}
    .menu__box2, .menu__item {font-size: 15px}
    a:hover {transition-duration: .25s; color: rgb(0, 47, 255);}
  }
  
  /* If the screen size is 1001px wide or more, set the font-size of <div> to 30px */
  @media screen and (min-width: 1001px) {
    body {background-color: rgb(255, 255, 0);}
    .menu__item {font-family: "Kode Mono", monospace;}
    .menu__item:hover {
      color: rgb(0, 255, 0);}
    .le {font-size: 40px; font-family: "Jersey 20 Charted", sans-serif;}
    .collection {font-size: 60px; font-family: "Pinyon Script", cursive;}
    .of, .button {font-size: 50px; font-family: "Jersey 15", sans-serif;}
    .failure {font-size: 50px; font-family: "Kode Mono", monospace;}
    .description {font-size: 20px; font-family: "Kode Mono", monospace;}
    .menu__box2, .menu__item {font-size: 20px}
    a:hover {transition-duration: .25s; color: rgb(0, 255, 0); font-family: "Pinyon Script", cursive;}
  }

  /* If screen size is 1000px wide or less, set font-size of <div> to 15px */
@media screen and (max-width: 559px) {
    body {background-color: rgb(0, 47, 255);}
    .menu__item {font-family: "Kode Mono", monospace;}
    .menu__item:hover {
      color: rgb(255, 255, 0);}
    .le {font-size: 10px; font-family: "Kode Mono", monospace;}
    .collection {font-size: 30px; font-family: "Jersey 20 Charted", sans-serif;}
    .of, .button {font-size: 20px; font-family: "Pinyon Script", cursive;}
    .failure {font-size: 20px; font-family: "Jersey 15", sans-serif;}
    .description {font-size: 12px; font-family: "Kode Mono", monospace;}
    .menu__box2, .menu__item {font-size: 12px}
    a:hover {transition-duration: .25s; color: rgb(255, 255, 0);}
  }