/*body {
   background-color: #0c051a; 
    background-image: url(https://i.pinimg.com/736x/1b/77/3f/1b773f7322c4512076b0140c30ddf36c.jpg); 
    padding-top: 50px;
  background-image: url(img/bg1.webp);
    background-size: cover;
    background-attachment: fixed; 
}*/
.image-container {
    width: 100%; /* ปรับขนาดตามต้องการ */
    height: 100%; /* ปรับขนาดตามต้องการ */
    overflow: hidden; /* ป้องกันไม่ให้ภาพที่เบลอหลุดออกมานอกขอบ */
    position: relative;
}

.blur-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ปรับภาพให้เต็มพื้นที่โดยไม่เสียอัตราส่วน */
    filter: blur(8px); /* ปรับค่าความเบลอได้ตามต้องการ เช่น 5px, 10px เป็นต้น */
}

.contact {
    width: 100px;
    margin-top: 50px;
    margin-bottom: 10px;
    display: block;
    text-align: start;
    color: #321d75;
    text-decoration: none;
}
.contact:hover {
    color: #13229f;
    text-decoration: none;
}

@media (max-width: 1024px) {
    /* Hide on screens 1024px and below (tablets and phones) */
    .contact {
        display: none;
    }
}

