* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
   
   .clearfix::after {
    content: "";
    clear: both;
    display: block;
   }
   
   html {
    font-family: sans-serif;
   }
   
   body {
    overflow-x: hidden;
   }
   
   .burger {
    position: fixed;
    z-index: 1;
    opacity: 0.7;
    top: 30px;
    right: 30px;
    font-size: 70px;
    color: orange;
    line-height: 20px;
    transition: .3s linear;
   }

   .burger:hover {
    cursor: pointer;
   }

   aside {
    position: fixed;
    z-index: 1;
    opacity: 0.9;
    top: 0;
    bottom: 0;
    left: -300px;
    width: 300px;
    background-color: orange;
    transition: .3s linear;
   }

   nav ul li {
    padding: 30px;
    text-align: center;
   }

   nav ul li a {
    text-transform: none;
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
   }
   
   .fa-solid {
    display: none;
   }
   
   i.show {
    display: block;
   }

   aside.show {
   left: 0;
   }
   
   .about,
   .quotes {
    margin: 90px 0;
   }
   
   .about h1,
   .quotes h1 {
    font-size: 60px;
    text-align: center;
    margin-bottom: 40px;
    color: black;
   }
   
   /* ABOUT */
   .about h2 {
    background-color: orangered;
    padding: 20px 0 20px 10vw;
    font-size: 50px;
    text-transform: none;
    text-align: center;
    letter-spacing: 1px;
    font-weight: normal;
    margin-bottom: 20px;
    color: white;
   }
   
   .about img {
    float: left;
    padding: 0 30px;
    height: 45vh;
    width: 35vw;
   }
   
   .about p {
    font-size: 20px;
    padding-right: 40px;
    margin-left: 30px;
    line-height: 2;
   }

   .about p a {
    text-decoration: none;
    text-transform: uppercase;
    color: red;
    cursor: pointer;
   }
   
   .about article {
    margin-bottom: 30px;
    transition: 1s;
   }

   
   .about .art2,
   .about .art4,
   .about .art6,
   .about .art8,
   .about .art10,
   .about .art12,
   .about .art14,
   .about .art16,
   .about .art18,
   .about .art20,
   .about .art22,
   .about .art24 {
    transform: translateX(-100vw);
   }
   
   .about .art3,
   .about .art5,
   .about .art7,
   .about .art9,
   .about .art11,
   .about .art13,
   .about .art15,
   .about .art17,
   .about .art19,
   .about .art21,
   .about .art23 {
    transform: translateX(100vw);
   } 
   
   .about .art2.active,
   .about .art4.active,
   .about .art6.active,
   .about .art8.active,
   .about .art10.active,
   .about .art12.active,
   .about .art14.active,
   .about .art16.active,
   .about .art18.active,
   .about .art20.active,
   .about .art22.active,
   .about .art24.active,
   .about .art3.active,
   .about .art5.active,
   .about .art7.active,
   .about .art9.active,
   .about .art11.active,
   .about .art13.active,
   .about .art15.active,
   .about .art17.active,
   .about .art19.active,
   .about .art21.active,
   .about .art23.active {
    transform: translateX(0);
   }
   
   /* QUOTES */
   .quotes {
    padding: 20px 0;
   }
   
   .quotes p {
    font-size: 22px;
    margin: 30px 0;
    letter-spacing: 1px;
    line-height: 1.5;
   }
   
   .quotes p span {
    color: orangered;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px; 
   }
   
   .quotes article {
    margin-bottom: 10px;
   }
   
   .quotes img {
    float: left;
    padding: 0 50px;
    height: 50%;
    width: 50%;
   }

   .quotes article {
    transform: scale(0);
    transition: 1s linear;
   }
   
   .quotes article.active {
    transform: scale(1);
   }

footer {
  background-color: orangered;
  width: 100%;
  padding: 20px 20px;
  margin: 50px -10px 0 0;
  }
  
  footer p {
  font-size: 12px;
  text-align: left;
  line-height: 0.5cm;
  color: white;
  }
  
  footer a {
    font-size: 12px;
    text-align: left;
    padding: 0;
    line-height: 0.5cm;
    color: white;
    text-decoration: underline;
  }
  
  footer a:hover {
    color: yellow;
  }


  @media (orientation: landscape) {
    .burger {
      position: fixed;
      z-index: 1;
      opacity: 0.7;
      top: 20px;
      right: 70px;
      font-size: 50px;
      color: orange;
      line-height: 20px;
      transition: .3s linear;
     }
  
     .burger:hover {
      cursor: pointer;
     }
  
     aside {
      position: fixed;
      z-index: 1;
      opacity: 0.9;
      top: 0;
      bottom: 0;
      left: -300px;
      width: 300px;
      background-color: orange;
      transition: .3s linear;
     }
  
     nav ul li {
      padding: 20px;
      text-align: center;
     }
  
     nav ul li a {
      text-transform: none;
      text-decoration: none;
      color: black;
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 1px;
     }
     
     .fa-solid {
      display: none;
     }
     
     i.show {
      display: block;
     }
  
     aside.show {
     left: 0;
     }
     
     .about,
     .quotes {
      margin: 90px 0;
     }
     
     .about h1,
     .quotes h1 {
      font-size: 55px;
      text-align: center;
      margin-bottom: 40px;
      color: black;
     }
     
     /* ABOUT */
     .about h2 {
      background-color: orangered;
      padding: 15px;
      font-size: 45px;
      text-transform: none;
      text-align: center;
      letter-spacing: 1px;
      font-weight: normal;
      margin-bottom: 20px;
      color: white;
     }
     
     .about img {
      float: left;
      padding: 10px;
      margin-left: 20px;
      margin-right: 20px;
      height: 45vh;
      width: 30vw;
     }
     
     .about p {
      font-size: 20px;
      margin-left: 30px;
      line-height: 1.3;
     }
     
     .about article {
      margin-bottom: 10px;
      transition: 1s;
     }
  
     
     .about .art2,
     .about .art4,
     .about .art6,
     .about .art8,
     .about .art10,
     .about .art12,
     .about .art14,
     .about .art16,
     .about .art18,
     .about .art20,
     .about .art22,
     .about .art24 {
      transform: translateX(-100vw);
     }
     
     .about .art3,
     .about .art5,
     .about .art7,
     .about .art9,
     .about .art11,
     .about .art13,
     .about .art15,
     .about .art17,
     .about .art19,
     .about .art21,
     .about .art23 {
      transform: translateX(100vw);
     } 
     
     .about .art2.active,
     .about .art4.active,
     .about .art6.active,
     .about .art8.active,
     .about .art10.active,
     .about .art12.active,
     .about .art14.active,
     .about .art16.active,
     .about .art18.active,
     .about .art20.active,
     .about .art22.active,
     .about .art24.active,
     .about .art3.active,
     .about .art5.active,
     .about .art7.active,
     .about .art9.active,
     .about .art11.active,
     .about .art13.active,
     .about .art15.active,
     .about .art17.active,
     .about .art19.active,
     .about .art21.active,
     .about .art23.active {
      transform: translateX(0);
     }
     
     /* QUOTES */
     .quotes {
      padding: 20px 0;
     }
     
     .quotes p {
      font-size: 20px;
      margin: 30px;
      letter-spacing: 1px;
      line-height: 1.5;
     }
     
     .quotes p span {
      color: orangered;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 28px; 
      margin-left: 30px;
  
     }
     
     .quotes article {
      margin-bottom: 20px;
     }
     
     .quotes img {
      float: left;
      padding: 0 10px;
      margin-left: 20px;
      height: 50%;
      width: 50%;
     }
  
     .quotes article {
      transform: scale(0);
      transition: 1s linear;
     }
     
     .quotes article.active {
      transform: scale(1);
     }
    }

    @media (orientation: portrait) {
      .burger {
        position: fixed;
        z-index: 1;
        opacity: 0.7;
        top: 10px;
        left: 220px;
        font-size: 40px;
        line-height: 20px;
        color: orange;
        transition: .3s linear;
       }
    
      
   aside {
    position: fixed;
    z-index: 1;
    opacity: 0.9;
    top: 0;
    bottom: 0;
    left: -180px;
    width: 180px;
    background-color: orange;
    transition: .3s linear;
   }

   nav ul li {
    padding: 10px;
    text-align: center;
   }

   nav ul li a {
    text-transform: none;
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
   }

   .fa-solid {
    display: none;
   }
   
   i.show {
    display: block;
   }

   aside.show {
   left: 0;
   }

      .about,
      .quotes {
       margin: 40px 0;
      }

      .about h1,
      .quotes h1 {
       font-size: 30px;
       text-align: center;
       margin-top: 50px;
      margin-bottom: 20px;
       color: black;
      }
      
      /* ABOUT */
      .about h2 {
       background-color: orangered;
       padding: 15px;
       font-size: 20px;
       text-transform: none;
       text-align: center;
       letter-spacing: 1px;
       font-weight: normal;
       margin-bottom: 20px;
       color: white;
      }
      
      .about img {
       float: none;
       padding: 0 10px;
       margin-left: 5%;
       margin-bottom: 20px;
       height: 32vh;
       width: 90vw;
      }
      
      .about p {
       font-size: 20px;
       line-height: 1.3;
       padding: 10px;
       margin-left: 10px;
      }
      
      .about article {
       margin-bottom: 10px;
       transition: 1s;
      }
      .about .art2,
      .about .art4,
      .about .art6,
      .about .art8,
      .about .art10,
      .about .art12,
      .about .art14,
      .about .art16,
      .about .art18,
      .about .art20,
      .about .art22,
      .about .art24 {
       transform: translateX(-100vw);
      }
      
      .about .art3,
      .about .art5,
      .about .art7,
      .about .art9,
      .about .art11,
      .about .art13,
      .about .art15,
      .about .art17,
      .about .art19,
      .about .art21,
      .about .art23 {
       transform: translateX(-100vw);
      } 
      
      .about .art2.active,
      .about .art4.active,
      .about .art6.active,
      .about .art8.active,
      .about .art10.active,
      .about .art12.active,
      .about .art14.active,
      .about .art16.active,
      .about .art18.active,
      .about .art20.active,
      .about .art22.active,
      .about .art24.active,
      .about .art3.active,
      .about .art5.active,
      .about .art7.active,
      .about .art9.active,
      .about .art11.active,
      .about .art13.active,
      .about .art15.active,
      .about .art17.active,
      .about .art19.active,
      .about .art21.active,
      .about .art23.active {
       transform: translateX(0);
      }
     
      /* QUOTES */
      .quotes {
       padding: 5px 0;
      }
      
      .quotes p {
       font-size: 14px;
       margin: 10px;
      }
      
      .quotes p span {
       font-size: 18px; 
      }
      
      .quotes article {
       margin-bottom: 20px;
      }
      
      .quotes img {
       float: none;
       padding: 0 5px;
       margin: 10px;
       height: 80%;
       width: 80%;
      }

      .quotes article {
        transform: scale(0);
        transition: 1s linear;
       }
       
       .quotes article.active {
        transform: scale(1);
       }
     } 
