.menubar {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  transition: top 0.3s ease;
  justify-content: space-between;
  background: 0 0;
  position: fixed;
  left: 0;
  backdrop-filter: blur(1px);
  top: -10%;
  z-index: 99 !important;
}
.menu-itens {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-item {
  height: 20px;
  border-radius: 3rem;
  color: var(--color-text);

  align-content: center;
  text-align: center;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 4px 10px;
  background: 0 0;
}
.menu-item:hover {
  background: var(--select);
}
