@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar a {
  color: #594C53;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.3s;
}

.navbar a:hover {
  color: rgb(204, 23, 141);
}

.gallery-container {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  justify-content: center;
}

.gallery-item {
  flex: 1 1 calc(20% - 20px); /* 5 items per row */
  max-width: calc(20% - 20px);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.gallery-thumbnail {
  width: 100%;
  height: 200px; /* Set a fixed height */
  object-fit: cover; /* Ensure the content covers the container without overflow */
  display: block;
}


::-webkit-scrollbar{
  width:15px;
}
::-webkit-scrollbar-track{
  background-color:background-color: #fefff0;
  ;
}
::-webkit-scrollbar-thumb{
  background: #594C53;
  border-radius: 8px;
}
