* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  .sidebar {
    height: 100vh;
    width: 15%; 
    background-color: #f8990a; 
    position: fixed;
    top: 0;
    left: 0;
    font-size: x-large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 70px;
    padding: 10px;
  }
  
  .sidebar .sidebar-content ul {
    list-style-type: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .sidebar .sidebar-content ul li a {
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding: 30px;
    
  }
  
  .sidebar .sidebar-content ul li:hover {
    background-color: #121111;
    border-radius: 20px;
    text-align: center;
  }
  body{
    background-color: rgb(250, 250, 185);
    position: relative; left: 1%;
    overflow-x: hidden;
    margin-left: 200px;
  }
  
  .coverphoto {
    height: 300px;
    width: 900px;
    list-style: none;
    text-decoration: none;
    padding: 30px;
  }
  .heading {
    font-size: 90px;
    padding: 30px;
  }

  .blogcontent {

    font-size: 20px;
    width: 900px;
    padding: 30px;
  }

  @media screen and (max-width: 480px) {
    .sidebar {
      width: 80vw; 
      transform: translateX(-100%); 
      z-index: 1000;
    }
  
    .hamburger {
      display: block;
      position: fixed;
      top: 15px;
      left: 80%; 
      font-size: 1.8rem;
      background-color: #f8990a;
      padding: 8px;
      border-radius: 4px;
      cursor: pointer;
      z-index: 1001;
    }
  
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 10;
    }
  
    #hamburger-toggle:checked ~ .sidebar {
      transform: translateX(0); 
    }
  
    #hamburger-toggle:checked ~ .overlay {
      display: block;
    }
  
    body {
      width: 100%; 
      margin: 0;
      padding: 0;
    }
  
    .coverphoto {
      width: 90%; 
      height: 300px;
      padding: 10px;
    }
  
    .heading {
      font-size: 50px; 
      width: 90%;
      padding: 10px;
    }
  
    .blogcontent {
      width: 90%; 
      font-size: 16px;
      padding: 10px;
    }
  }
  