@font-face {
  font-family: 'Nourd';
  src: url('/fonts/nourd_regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.nav {
  font-family: 'Nourd';
  background-color: #faf7f3;
  border-bottom: 1px solid #faf7f3;
}

.nav-container 
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    gap: 4rem;
}

.menu-btn,
.user-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.user-btn {
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-container a {
  text-decoration: none;
  color: #333;
  font-size: 0.875rem;
  transition: color 0.2s;
  font-weight: bold;
}

.nav-container a:hover {
  color: #666;
}

@media (max-width: 768px) {
  .nav-container {
    display: none;
  }
}

.wyloguj {
  background-color: #faf7f3;
  color: #000;
  font-family: 'Nourd', 'Krona One', sans-serif;
  font-size: 14px;
  padding: 10px 15px;
  border: 3px solid #000;
  border-radius: 40px;
  cursor: pointer;
}


/* footer w headerze xd */
.footer
{
  font-family: 'Nourd';
  height: 250px;
  background-color: #b7ccfa;
  display: flex;
  align-items: center;
  justify-content: space-around;
  .s1,.s2,.s3,.s4
    {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      h3
      {
        color: #03234d;
        border-bottom: 1px solid #000;
      }
      a
      {
        color: #03234d;
        text-decoration: none;
      }
      a, h3, p
      {
        margin: 3px;
      }
    }
  .logo
  {
    margin-top: 50px;
    img
    {
      width: 150px;
      height: 50px;
    }
  }
}