/* The sidebar menu */
.sidenav {
  height: 1000px;
  width: 130px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 128; /* Stay at the top */
  left: 0;
  background-color: #3D313F; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: scroll;
  padding-top: 20px;
  
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #847072;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: antiquewhite;
}

/* Style page content */
.mainAss {
  margin-left: 140px; /* Same as the width of the sidebar */
  padding: 0px 10px;
  margin-top:0px;
}
.taskrobot{
    align-items: center;
    z-index: 1;
    }

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 1080px) {
  .sidenav {padding-top: 15px;height: 540px;}
  .sidenav a {font-size: 18px;}
}

/