/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* cały pasek */
.navbar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #9fd4eb; /* ciemniejszy błękit */
  border-bottom: 2px solid #5aa7c7;
  position: sticky;
  top: 0;
}

/* logo */
.logo {
  width: clamp(70px, 20vw, 180px);
  height: auto;
  padding: 8px 16px;
}

/* lista */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

/* pojedyncze zakładki */
.nav-links li {
  display: flex;
}

/* linki */
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: #c9ecfa; /* inne tło niż navbar */
  color: #002b40;
  text-decoration: none;
  border-left: 1px solid #7bb8d1;
  transition: background-color 0.15s;
}

/* hover */
.nav-links a:hover {
  background-color: navy;
  color: white;
}