/* ตั้งค่าพื้นหลังและฟอนต์ */
body {
  background-color: #fce4ec;
  font-family: 'Sukhumvit Set', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

/* จัดการ header */
header {
  margin-bottom: 40px;
}

/* จัดตำแหน่งและระยะห่างของส่วนต่างๆ */
section {
  margin: 20px 0;
  width: 80%;
  max-width: 800px;
  text-align: center; /* ข้อความใน section ให้อยู่กลาง */
}

/* ทำให้หัวข้ออยู่กลาง */
h1, h2 {
  text-align: center;
}

/* จัดรายการให้เป็นระเบียบ */
ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

li {
  margin-bottom: 8px;
}

/* ปรับสไตล์ให้ดูเรียบง่าย */
p {
  font-size: 1.1rem;
}

/* เพิ่มระยะห่างในส่วนของทักษะ */
#skills ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}



