html, body {
  margin: 0;
  font-family: "Zain";
  font-size: 24px;
  font-weight: 300;
  color: white;
  overflow-x: hidden;
}

.bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 0;
  margin: 0;
  background: url("pumpkin.jpg") center / cover no-repeat;
}

.page {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -moz-backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 80%;
  padding: 20px;
  overflow-y: auto;
  height: 85vh; /* Adjusted for better viewport control */
}

/* Scrollbar styling for a cleaner look */
.page::-webkit-scrollbar {
    width: 8px;
}
.page::-webkit-scrollbar-track {
    background: transparent;
}
.page::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

p {
  margin: 0;
  filter: drop-shadow(0px 3px 3px black);
}

.bold {
  font-weight: 500;
}

.semibold {
  font-weight: 400;
}

.header {
  font-size: 36px;
}

.smallheader {
  font-size: 32px;
}

a {
  text-decoration: none;
  color: white;
  line-height: 28px;
  font-size: 24px;
  font-weight: 400;
  transition: 0.2s;
  filter: drop-shadow(0px 1px 1px black);
}

a:hover {
  font-size: 28px;
}

hr {
  width: 20%;
  border: solid;
  border-width: 0.5px;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #d6d9d8;
  filter: drop-shadow(0px 3px 3px black);
}

.chipbox {
  display: flex;
  flex-direction: row;
  width: 80%; /* Keep this, as it controls the container's overall width */
  height: auto;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}

.chip {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  flex-basis: 15%; /* This will size the chip, use `auto` if you want it to be content-based */
  height: 100px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.2s;
  cursor: default;
}
.chip:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.2);
}

.chip > a {
  font-size: 24px;
  font-weight: 300;
  filter: none;
  padding: 2em;
  margin: -2em;
  position: relative;
}

ul {
  text-align: left;
  margin: 0;
}

li {
  filter: drop-shadow(0px 3px 3px black);
}



