body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: #FFD700;
  font-family: "Comic Sans MS", cursive, sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* ดาว */
.star {
  position: absolute;
  width: 10px;
  height: 10px;
  background: yellow;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 
                    79% 91%, 50% 70%, 21% 91%, 32% 57%, 
                    2% 35%, 39% 35%);
  animation: twinkle 1.5s infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.3; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

/* เมนูข้อความ */
.menu {
  position: absolute;
  width: 100%;
  height: 100%;
}

.menu .item {
  position: absolute;
  color: #FFD700;
  font-size: 28px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.menu .item:hover {
  color: white;
  text-shadow: 0 0 10px yellow;
}

/* ตำแหน่งข้อความให้เหมือนภาพ */
.intro { top: 20%; left: 15%; }
.future { top: 45%; left: 10%; }
.skills { top: 75%; left: 40%; }
.interest { top: 15%; left: 60%; }
.internship { top: 50%; left: 70%; }