.sidebar {
  position: fixed;
  top: 83px;;
  bottom: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  padding-top: 10px;
  padding-bottom: 10px;

  width: 150px;

  background-color: black;
}

.sidebar-category-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 3px;
  padding-right: 3px;

  border-radius: 3px;

  cursor: pointer;

  transition: box-shadow 2s;
}

.sidebar-category-container:hover {
  box-shadow:
  6px 6px 7px rgba(0, 245, 208, 0.7),
  -6px -6px 7px rgba(0, 245, 208, 0.7);
}

.sidebar div {
  font-family: 'Times New Roman';
  color: white;
  font-size: 18px;

}

.icon-container {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 7px;

}

.latest-icon {
  width: 100%;
}

.latest-title:hover {
  color: rgb(0, 245, 208);
}