.box{
    width: 100%;
    height: 150px;
    display: flex;
    justify-items: center;
    align-items: center;
    background-image: linear-gradient(to left ,#f8e8fb,#fff);
    text-align: center;
}



.topnav {
    overflow: hidden;
    background-color: #333;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }

.box_logo{
  color: #b9b6b6;
  justify-items: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(to right, #ffffff, #3498db,  #ffffff); /* เริ่มต้นด้วยสีขาวและเปลี่ยนเป็นสีฟ้า */
  text-align: center;

 background-size: 200% 100%;
    animation: gradient-animation 4s linear infinite; /* เรียกใช้ animation เป็นคำสั่งไลน์ */

}


  @keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    100% {
     background-position: 200% 50%;
    }
  }
  .logo {
    margin-left: 30%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(0, 0, 255, 0.111);
    border: 2px solid #777;
    display: flex; /* เพิ่มส่วนนี้ */
    justify-content: center; /* เพิ่มส่วนนี้ */
    align-items: center; /* เพิ่มส่วนนี้ */
    text-align: center; /* ถ้าข้อความยังมีการใช้งานเพิ่มเติม */
}
h1{
    margin-left: 30px;
}
.container {
    text-align: center;
}