header.header {
  font: 15px/0 'Roundo-Medium', sans-serif;
  letter-spacing: 1.5px;
  width: 100%;
  background-color: #0f0f0f;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0px;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: 1s;
  color: #f0f0f0;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.35);
}

img.aurumlogoheader {
  user-select: none;
  -webkit-user-drag: none;
  width: 39px;
  height: auto;
  margin: 13px;
  transition: 1s;
}

h1.aurum-header {
  font-size: 30px;
  text-align: center;
  margin: -10px;
  transition: 1s;
}

h1.aurum-header:hover {
  transform: scale(1.06);
  transition: 0.3s;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar a {
  color: #f0f0f0;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: 0.3s;
}

.navbar a:hover {
  color: #ffae00;
}

/* ----------------------------------------------------- */

/* mobile */

@media (max-width: 768px) {

  header.header {
    position: static;
    top: 0;
    justify-content: flex-start;
  }

  .logo-container {
    flex-shrink: 0;
  }

  img.aurumlogoheader {
    width: 32px;
    margin: 8px 8px;
  }

  .navbar {
    margin-left: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .navbar a {
    font-size: 14px;
    margin: 0;
    padding: 6px 6px;
    white-space: nowrap;
  }

  .nav-bewerbung {
    display: none;
  }

}