* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Lexend Deca", sans-serif;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
  }
  
  /* Sidebar */
  
  
  aside {
    position: fixed;
    height: 100vh;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f0f0f0;
    padding: 20px;   
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.176);
  }
  
  main{
    margin-left: 20%;
  }
  
  .sidebar h2 {
    font-size: 2.3vw;
  }
  
  .sidebar .list{
    font-size: auto;
    display: flex;
    flex-direction: column;
  }
  
  .sidebar .list a {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    color: #201d1d;
    text-decoration: none;
    margin: 10px;
  }
  
  .sidebar .list a:hover {
    color: #fcac00;
  }
  
  .sidebar .list .whatsapp:hover {
    color: #ffffff;
  }
  
  .sidebar .whatsapp a {
    background-color: #25d366;
  color: white;
  text-align: center;
  padding: 10px 0;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  }
  
  .sidebar .whatsapp:hover{
    cursor: pointer;
  }
  
  
  .whatsapp 
  /* Hamburger */
  .hamburger-menu{
      position: absolute;
      z-index: 10000;
  }
  
  #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: 3;
    }
    
    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
      display: block;
      position: absolute;
    
      width: 100%;
      height: 2px;
    
      background-color: #636363;
    
      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: 300px;
      height: 100%;
    
      margin: 0;
      padding: 80px 0;
    
      list-style: none;
    
      background-color: #eeeeee;
      box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    
      transition-duration: .25s;
      z-index: 2;
    }
  
   .menu__box h1{
      font-size: 2.3em;
      width: 4.5em;
      margin-left: 20px;
   }
    
    .menu__item {
      display: block;
      padding: 12px 24px;
    
      color: #000000;
    
      font-weight: 600;
    
      text-decoration: none;
    
      transition-duration: .25s;
    }
    .menu__item:hover {
      background-color: #ff9807;
      color: rgb(255, 255, 255);
    }

    @import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Rowdies:wght@400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

    /* Main Content */
    .main-content {
      max-width: 58rem;
      padding: 20px;
      max-width: fit-content;
    }
    
    .main-content h1 {
      line-height: 1.1 !important;
      width: 60vw;
      font-size: 5em;
      overflow-wrap: break-word;
      line-height: 1.4;
      margin-bottom: 10%;
    }
    

    /* Media Screen */
@media only screen and (min-width: 1920px) {

  .sidebar .list a{
  font-size: 60px;
}

  h3 h2 p{
    padding: 30px;
  }
}

@media only screen and (min-width: 769px) {
    .hamburger-menu{
        display: none;
    }
}

@media only screen and (max-width: 992px) {

    .main-content{
     padding-top: 0;
    }
    h3 {
        font-size: 10px;
    }
}

@media only screen and (max-width: 768px) {
    aside{
        display: none;
    }

    .main-content{
        position: relative;
        right: -10%;
        margin-left: 0;
        
    }

    h3 h2 p{
        font-size: 8vw;
      }

    h3 h2 p{
        width: 77%;
        margin-bottom: 20%;
        position: relative;
        right: 8%;
    }
}

h2 {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 35px;
}

h3 {
    font-size: 23px;
    margin-bottom: 2px;
    font-weight: bold;
    color: rgb(148 163 184);
}

img {
   margin: auto;
   margin-top: 30px;
   border-radius: 10px;
   margin-bottom: 30px;
}
 p {
    max-width: 60rem;
    margin-right: auto;
 }

 .span1 {
    font-weight: BOLD;
 }

 .span2 {
    font-style: italic;
    font-weight: bold;
 }

 .span3 {
    font-weight: bold;
    font-style: italic;
    color: rgb(55 65 81);
 }