body {
  background-image: url(img/bg1.webp);
  background-size: cover;
  background-attachment: fixed;
}

#navbar {
  background: rgba(255, 255, 255, 0.425);
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  display: block;
  transition: top 0.3s;
  z-index: 99999;
  display: flex;
  max-width: 700px;
}

#navbar a {
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#stars {
  display: block;
  position: relative;
  width: 100%;
  height: 16rem;
  height: auto;
}

.image-container {
  width: 100%;
  height: 100%; 
  overflow: hidden;
  position: relative;
}

.contact {
  width: 100px;
  margin-top: 100px;
  /* margin-bottom: 10px; */
  display: block;
  text-align: start;
  color: #5c5571;
  text-decoration: none;
}
.contact:hover {
  color: #3b406a;
}

@media (max-width: 1024px) {
  /* Hide on screens 1024px and below (tablets and phones) */
  .contact {
      display: none;
  }
}


.blur-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ปรับภาพให้เต็มพื้นที่โดยไม่เสียอัตราส่วน */
  /* filter: blur(8px); */ /* ปรับค่าความเบลอได้ตามต้องการ เช่น 5px, 10px เป็นต้น */
}