.sidebar{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding-top: 45px;
  width: 300px;
}

.profile-pic{
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
}
.profile{
  border: 1px solid rgb(113, 112, 112);
}

.profile-container{
   display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  padding: 2px;
  padding-left: 10px;
}

.name{
    margin-left:-80px;
  margin-top: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s;
}

.profile-container:hover{
background-color: rgb(221, 224, 224);
border-radius: 10px;
}

.friends{
  border-radius: 0%;
  padding: 2px;
}

.memories,
.saved
{
  object-fit: cover;
  padding: 3px;
}

.video,
.events
{
  border-radius: 0%;
  object-fit: contain;
  padding: 4px;
}

.ads{
  border-radius: 0%;
  padding: 3px;
  object-fit: cover;
}

.downward-arrow{
 align-items: center;
  font-size: 1.7rem;
  background-color: rgb(210, 209, 209);
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.privacy{
  font-size: 0.9rem;
  color: rgb(88, 87, 87);
  font-weight: 500;
}