#home {
  margin-top: 56px; /* Adjust for fixed navbar height */
  height: calc(100vh - 56px); /* Adjust for fixed navbar height */
  width: 100dvw;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/home_background.jpg') no-repeat center center/cover;
  z-index: -1; /* Ensure it stays behind other content */
}

#home section {
  background-color: hsla(0, 0%, 100%, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}