html {
    font-size: 16px;
    cursor: url(images/scissor.gif), auto;
  }
  
  p {
    margin: 0;
  }

  .nav {
    margin-bottom: 60px;
    margin-top: 40px;
    user-select: none;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    font-weight: bold;

  }

  .nav-link{
    background-color: white;
    color: black;
    border: 1px;
    border-color: black;
    padding: 5px;
    border-radius: 3px;
    margin-right: 10px;
    margin-top: 80px;
    font-family: 'Courier New', Courier, monospace
  }

  .nav-link:hover{
    color: white;
    background-color: black;
  }
  
  a {
    color: black;
    text-decoration: none;
  }

  hr{
    margin-top: 30px;
    border-top: 4px dashed black;
  }
  
  .main {
    display: grid;
    grid-template-columns: repeat(4,auto);
    grid-template-rows: repeat(4,auto);
    position: relative;
    margin-top: -50px;
  }
  
  .section {
    font-family: 'Courier New', Courier, monospace;
    height: 800px;
    width: auto;
    overflow: scroll;
    overflow-y: scroll;
    border-left: 4px dashed black;
    transition: filter 0.3 ease;
  }

  .section:hover{
    filter: invert(1);

  }
  

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

  .wrapper {
    background: white;
    width: 27vw;
  }
    


 