.olivia-nav-link-avatar {
  justify-content: center;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: grey;
  height: 80px;
  background-color: white;
  text-align: center;
}

.olivia-nav-link {
  cursor: pointer;
  color: grey;
  height: 86px;
  background-color: white;
  text-align: center;
  text-decoration: none;
}

.olivia-nav-link:hover {
  color: rgb(28, 74, 54);
  opacity: 1;
  border-radius: 10%;
  transition: color .2s ease-in-out;
}

@media (max-width:575px) {
  .user-avatar {
    width: 50px;
    border-radius: 50%;
    transition: width .4s;
  }
}

@media (min-width:576px) {
  .user-avatar {
    width:42px;
    border-radius: 50%;
    transition: width .4s;
  }
}

.user-avatar:hover {
  width: 50px;
  transition: width .4s;
}

.user-avatar-mobile {
  width: 54px;
  border-radius: 50%;
  transition: width .4s;
}