.navwrapper {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 99999;
  }
.openbtn {
    position: relative;
    font-size: 28px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
    z-index: 100001;
    transition: 0.3s;
  }
.openbtn:hover {
    color: #db1414;
  }
.sidepanel {
    height: 100vh;
    width: 250px;
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 60px;
    transform: translateX(-250px);
    transition: transform 0.5s ease;
    box-shadow: 5px 0 20px rgba(0,0,0,0.6);
    border-right: 2px solid #db1414;
  }
.navwrapper:hover .sidepanel {
    transform: translateX(0);
  }
.navwrapper:hover .openbtn {
    opacity: 0;
  }
.sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
.sidepanel a:hover {
    color: #db1414;
  }
.subnav {
    width: 100%;
  }
.subnavbtn {
    cursor: pointer;
  }
.subnav-content {
    display: none;
    background-color: #222;
    width: 100%;
  }
.subnav:hover .subnav-content {
    display: block;
  }
.subnav-content a {
    font-size: 20px;
    padding-left: 55px;
    color: #aaa;
  }
.subnav-content a:hover {
    background-color: #111;
    color: #db1414;
  }
body {
    background-color: black;
    color: white;
  }