:root {
  --primary-color: #74aa9c;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-style: "Kanit", sans-serif; /* ฟอนต์หลัก */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-style);
  background-color: var(--black-color);
  color: var(--white-color);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}