body {
  margin: 0;
  padding: 0;
  background-color: #000;
	font-family: 'DinoFont', sans-serif;
  color: white;
  overflow-y: auto;
}

@font-face {
  font-family: 'DinoFont';
  src: url('../fonts/DinoFont.ttf') format('truetype');
  font-display: swap;
}

.container {
  width: 100vw;
  height: 100vh;
  overflow-y: auto; /* ✅ เพิ่มตรงนี้ */

  max-width: 1920px;
  max-height: 1080px;
  margin: auto;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow-y: auto;
}

.centered-text {
  position: absolute;
  top: 10%;
  width: 100%;
  text-align: center;
  font-size: 2em;
  line-height: 1.5em;
}

.cartoon-button {
  font-family: 'FKDragon', sans-serif;
  background-color: #fff;
  border: 3px solid #ffb6c1;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1.2em;
  cursor: pointer;
  box-shadow: 2px 2px 5px #888;
  transition: transform 0.2s;
   font-family: 'DinoFont', sans-serif;
}

.cartoon-button:hover {
  transform: scale(1.05);
}

.transparent-button {
  background: none;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

.cloud-image {
  width: 100px;     /* ปรับขนาดตามที่ต้องการ เช่น 80px, 100px, 120px */
  height: auto;
  margin: 10px;
}

.spacer-vertical {
  height: 40px; /* ปรับตามความต้องการ เช่น 20px, 60px */
}

.spacer-horizontal {
  width: 40px;
  display: inline-block;
}

.section-padding {
  padding: 40px 20px; /* บน-ล่าง 40px, ซ้าย-ขวา 20px */
}

.margin-box {
  margin-top: 30px;
  margin-bottom: 30px;
}


.centered-box {
  margin: 0 auto;
  max-width: 800px;
}

