@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=block");
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sarabun:wght@300&display=swap");
:root {
  font-size: 16px;
}

i {
  font-style: normal;
  color: #FFCE4D;
}

body {
  margin: 2em;
  background-color: #0a0266;
}

h1, h2, h3, h4 {
  font-family: Kanit;
  font-weight: 300;
}

p, ol, ul, li {
  font-family: Sarabun;
  font-weight: 300;
  color: #a59dfd;
}

ol {
  list-style: none;
  counter-reset: item;
}

li {
  counter-increment: item;
  font-size: 3rem;
  line-height: 4.5rem;
  color: #a59dfd;
  margin: 0rem 0rem 1.5rem 0rem;
}

li:before {
  font-size: 2.5rem;
  margin-right: 1rem;
  content: counter(item) ".";
  height: 100%;
  text-align: center;
  display: inline-block;
}

h1 {
  color: #ff0000;
  font-size: 4rem;
  text-align: center;
}

div.links {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto 2rem auto;
}

a.link {
  display: inline-block;
  font-family: Prompt;
  font-size: 3rem;
  line-height: 3.5rem;
  text-align: center;
  margin: 0px 1rem 0px 1rem;
  text-decoration: none;
  color: #00c262;
  border-bottom: 2px dotted;
}

video {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  border-radius: 15px;
  background-color: black;
}

u {
  text-decoration: none;
  border-bottom: 3px dotted #4839fb;
  line-height: 1.1em;
}

u > em {
  background-color: #4839fb;
  color: white;
}

u > em:after {
  border-color: transparent transparent #4839fb transparent;
  border-width: 10px;
  margin-left: -10px;
}