@font-face {
  font-family: 'Ubuntu';
  src: url('../font/Ubuntu/Ubuntu-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('../font/Ubuntu/Ubuntu-Reguler.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('../font/Ubuntu/Ubuntu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../font/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../font/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
:root {
  --gelap-bg: black;
  --gelap-ly: rgba(255,255,255,0.05);
  --gelap-teks: white;
  --font-primary: "Ubuntu", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --font-light: 300;
  --font-bold: 700;
}
html, body {
  margin: 0;
  padding: 0;
  background-color: var(--gelap-bg);
  height: 100vh;
}
.main {
  background-color: var(--gelap-bg);
  display: flex;
  justify-content: center;
  height: 100vh;
}
.ktk {
  background-color: var(--gelap-ly);
  margin: auto 50px;
  color: var(--gelap-teks);
  border-radius: 30px;
  box-shadow:
    rgba(255, 255, 255, 0.1) 1px 1px 0px 0.1px,
    rgba(0, 200, 0, 0.1) -1px -1px 0px 1px;
  position: relative;
}
.isi {
  margin: 50px;
  position: relative;
  z-index: 1;
}
.bag {
  display: flex;
}
.kr {
  width: 100%;
  position: relative;
}
.kr img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.kn {
  flex-grow: 0;
  padding: 0px 50px;
}
h1, p {
  font-family: var(--font-primary);
}
p {
  line-height: 20pt;
  font-weight: var(--font-light);
}
ul {
  font-family: var(--font-secondary);
  padding: 5px 0px;
  list-style: none;
}
li {
  line-height: 20pt;
  margin: 10px 0px;
  display: flex;
  column-gap: 15px;
  font-size: 120%;
}
h1 {
  font-size: 300%;
}
.ph, .ps {
  font-size: 110%;
}
.pt {
  font-size: 80%;
}
.bl {
  white-space: nowrap; 
  padding: 5px 10px;
  border-radius: 10px;
}
a {
  text-decoration: none;
  color: var(--gelap-teks);
}
.bl:hover {
  border-top: 1px white dashed;
  border-bottom: 1px white dashed;
  background: #ffffff36;
}
.centang {
  width: 30px;
  flex-shrink: 0;
  align-self: start;
}
@media (max-width: 800px) {
  h1 {
    text-align: center;
  }
  .bag {
    flex-flow: column;
  }
  .kr {
    height: 100px;
  }
  .kn {
    padding-left: 20px;
    padding-right: 20px;
  }
  .isi {
    margin: 20px;
  }
}
@media (min-width: 1000px) {
  .kr {
    width: 40%;
  }
}
@media (min-width: 1300px) {
  .ph span {
    display: inline-block;
  }
}
.footer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  font-size: 70%;
  font-family: var(--font-primary);
  opacity: 50%;
}
.fl {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  filter: blur(100px);
  overflow: hidden;
  opacity: 0.1;
}
.fs {
  background: white;
  height: 100%;
  clip-path: polygon(59.95% 5.78%, 52.8% -30.32%, 75.48% -22.40%, 104% -29.82%, 99.2% 22.96%, 62.6% 8.74%, 42.28% 64.26%, 28.59% 66.12%, 23.62% 76.54%, 5.28% 88.91%, 23.24% 60.79%, 4.31% 12.57%, 23.02% 32.67%, 28.73% 54.21%, 34.87% 58.18%);
  animation: berputar 30s linear infinite;
}
@keyframes berputar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
