/* Set the font-family to chomsky like this. font-family: Chomsky, cursive; */
@font-face {
  font-family: OldNewspaperTypes;
  src: url(OldNewspaperTypes.ttf);
}
@font-face {
  font-family: Unique;
  src: url(Unique.ttf);
}
  
  html {
    font-size: 140%;
  }
  
  body {
    font-family: Unique;
    background-color: #232323;
    max-width: 1200px;
    margin:auto;
    border: 2px solid;
    padding: 2px;
    align-items:center;
   
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: OldNewspaperTypes;
    font-weight: normal;
    margin: 0;
    padding: 4px 8px;
    background-color: #c6b792;
  }
  
  p {
    font-family: Unique;
    font-size: 16px;
    text-align: justify;
    margin: 0;
    padding: 4px 8px;
    box-sizing: border-box;
    max-width: 800px;
  }
  
  
  header {
    margin: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c6b792;
  }
  
  header h1 {
    font-family: OldNewspaperTypes;
    font-size: 92px;
    
    
  }
  
  header div:first-child {
    margin-left: 8vw;
    
  }
  
  header div:last-child {
    margin-right: 8vw;
   
  }
  
  header div {
    padding: 12px;
    border: 2px solid;
    
  }
  
  nav {
    padding: 8px 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    display: flex;
    justify-content: space-between;
    background-color: #c6b792;
  }
  
  section {
    margin: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c6b792;
   
  }
  
  article {
    margin-top: 18px;
    margin-left: 210px;
    align-items: justify;

  
  }

  .footer{
    padding: 8px 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    display: flex;
    justify-content: space-between;
    background-color: #c6b792;
}


.my-button {
        background-color: #b0a280;
        border: none;
        color: rgb(0, 0, 0);
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 2px;
        font-family: OldNewspaperTypes;
      }


   @media screen and (max-width: 600px) {
    .section{
      display:none;
      margin: auto;
    
    
    
    }

    .side-article{
      width: 100%;
      display: none;
      margin: auto;
    }

    .header h1 {
      width: 100%;
      display: none;
      margin: auto;
      font-size: 20px;
    }

    .footer{
      width: 100%;
      display: none;
      margin: auto;
    }

    .body{
      font-size: 14px;
    }

  }
  