.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  padding: 8px 32px;
  font-family: IBM Plex Sans, sans-serif !important;

}

.header_container{
  display: flex;
  justify-content: space-between;
}

.logo{
  width: 200px;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav_list {
  display: flex;
  gap: 24px;
}

.link_item {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.link_item a {
  color: var(--color-gray-300);
  text-decoration: none;
}

.link_item--active a {
  color: var(--color-white-200);
  text-decoration: underline;
  text-decoration-color: var(--color-blue-100);
  text-underline-offset: 8px;
  text-decoration-thickness: 4px
}

.buttons{
    display: flex;
    gap: 16px;
}
