.sidepanel  {
    width: 0;
    position: fixed;
    z-index: 1;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #fab1a0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidepanel a {
    padding: 8px 8px 8px 80px; /* medzera vlavo a dalsie medzery */
    text-decoration: none;
    font-size: 25px;  /* velkost pisma v menu */
    color: black;
    display: block;
    transition: 0.3s;
  }
  
  .sidepanel a:hover {
    color: #f1f1f1;
  }
  
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 60px;
  }
  
  .openbtn {
  opacity: 0.3;
  background-color: white;
  position: absolute;
  border: none;
  top:11px;
  left: 0px;
  }

/* velkost hamburger buttonu  */
  .openbtn > img {width: 42px;}
  
 