header {
  position: fixed;
  color: white;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* flex-wrap: nowrap; */
  gap: 10px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.329);
  box-sizing: border-box;
  overflow: visible;
  height: 60px;
  white-space: nowrap;
}

.header-username h2 {
  font-size: 16px;
  color: #fff;
  padding-right: 8px;
}


/* Mobile */
@media (max-width: 480px) {

  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: transparent;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    backdrop-filter: blur(6px);
    height: 50px;
    overflow: visible;
    white-space: nowrap;
  }

  .header-username h2 {
    font-size: 12px;
    color: #fff;
  }
}