﻿.topbar {
  position: static;
  width: 100%;
  z-index: 10;
  min-height: 32px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 15px;
}

@media (max-width: 768px) {
  .topbar {
    font-size: 10px;
    padding: 8px 15px;
    text-align: center;
  }
}

