.container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.box {
    padding: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;

}
@import url('fonts/sarabun.css'); /* สมมติว่ามีไฟล์ CSS สำหรับจัดการฟอนต์ Sarabun */

body {
    font-family: 'Sarabun', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}
button {
  background-color: #4CAF50; /* สีพื้นหลัง */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;   

  border-radius: 12px; /* ปรับมุมมนของปุ่ม */
  box-shadow: 0px 5px 10px rgba(0,0,0,0.2); /* เพิ่มเงา */

  /* Hover Effect */
  &:hover {
    background-color: #3e8e41;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
  }
}