@charset "UTF-8";
@font-face {
  font-family: "Sarabun";
  src: url(../../../../../../fonts/Sarabun/Sarabun-Regular.ttf);
}
@font-face {
  font-family: "Kanit";
  src: url(../../../../../../fonts/Kanit/Kanit-Thin.ttf);
}
@font-face {
  font-family: "Prompt";
  src: url(../../../../../../fonts/Prompt/Prompt-Regular.ttf);
}
@font-face {
  font-family: "PlexSans";
  src: url(../../../../../../fonts/IBM_Plex_Sans_Thai/IBMPlexSansThai-Medium.ttf);
}
@font-face {
  font-family: "NotoSansThai";
  src: url(../../../../../../fonts/NotoSansThai/NotoSansThai-Light.ttf);
}
:root {
  font-family: Sarabun;
  font-weight: normal;
  font-size: 16px;
  --def-undr: #b175ff;
  --def-bgnd: #330075;
  --def-text: #cea8ff;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(266deg, 100%, 33%);
  overflow-x: clip;
}

h1, h2 {
  font-family: Kanit;
  font-weight: normal;
}

h1 {
  font-size: 6rem;
  text-align: center;
  color: hsl(12deg, 86%, 47%);
  margin: 0 0 0rem 0;
  padding: 0;
}

span {
  font-family: NotoSansThai;
  color: #b276ff;
}

li span:before {
  content: " [";
}

li span:after {
  content: "] ";
}

ul {
  font-family: Sarabun;
  font-size: 2.5rem;
  margin: 0rem 3rem 3rem 3rem;
  list-style: none;
  counter-reset: pCount;
}

li {
  counter-increment: pCount;
  line-height: 3.85rem;
  position: relative;
  color: hsla(55deg, 100%, 92%, 0.8);
  margin-bottom: 2rem;
}

ul li:before {
  font-size: 85%;
  color: hsl(12deg, 86%, 47%);
  content: counter(pCount) ". ";
}

u.w {
  color: #b276ff;
}

em, i {
  font-style: normal;
  color: hsla(90deg, 74%, 89%, 0.7);
}

u em, u i {
  padding: 0.3rem 1rem 0.5rem 1rem;
}