* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  width: 100vw;
  height: 100vh;
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  overflow: hidden;
}

ul {
    height: 90%;
    width: 100%;
}

li {
    height: 120%;
    width: 100%;
}

.container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url("https://i.postimg.cc/NjZyHP9f/Untitled.png");
  background-attachment: fixed;
  background-size: cover;
}

img {
  width: auto;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}