.top-bar {
  position: fixed;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content:space-between;
  padding: 0;
  width: 100%;
  height: 64px;
}

.top-bar .left-entry {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.top-bar .left-entry li a {
  font-size: 1.2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
}

.top-bar .left-entry li::before {
  content: '';
  position: absolute;
  inset: 4;
  box-shadow: inset 4px 4px 0 #fff;
  z-index: 1;
  border-radius: 20px;
  filter: blur(2px);
  pointer-events: none;
}

.top-bar .left-entry li a:hover {
    opacity: 0.7;
}
/*
.top-bar .social-button{

}
*/
@media (max-width: 800px) {
  .top-bar {
    flex-direction: column;
  }
  .top-bar .left-entry {
    padding-left: 20px;
  }
}