:root {
}
* {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-style: normal;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body {
  background-color: #f8f8f8;
}
.top_bar {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  margin: 2rem 3rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.logo {
  font-weight: 600;
  font-size: 1.2rem;
}
.logo img {
  object-fit: contain;
  height: 2rem;
  display: block;
}
.nav_buttons ul {
  display: flex;
  gap: 0;
  justify-content: space-between;
  border-radius: 0.5rem;
  list-style: none;
}
.nav_button {
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  transition: background 0.2s ease;
}
.nav_button a {
  text-decoration: none;
  color: #343434;
  font-weight: 500;
  display: block;
  margin: 0.5rem;
}
.nav_button a {
  text-decoration: none;
  display: block;
}
.nav_button:hover {
  cursor: pointer;
}
.nav_button:hover a {
}
.fullpage_image {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.hero_image {
  width: 90%;
  overflow: hidden;
  margin: -2rem auto 0 auto;
}
.hero_image img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.margin_container {
  margin: 0 4rem;
}
.grid_container {
  margin: 1rem;
  column-count: 3;
  column-gap: 1rem;
  column-fill: balance;
}
@media (max-width: 1000px) {
  .grid_container {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .grid_container {
    column-count: 1;
  }
}
.grid_item {
  break-inside: avoid;
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
}
.grid_item.category {
  background-color: #f0f4f8;
  border-color: #d0dae3;
}
.grid_item.category p strong:first-child {
  font-size: 1.4rem;
}
