/* styles.css */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  padding: 0;
  transition: opacity 1s ease, background-color 0.5s ease;
  background-color: black;
  width: 100%;
  overflow-x: clip;
}

body.fade-in {
  opacity: 1;
  background-color: black;
}

body.fade-out {
  background-color: black;
  opacity: 0;
}

nav {
  background-color: black;
  width: 100%;
  height: 11dvw;
  max-height: 88px;
  display: flex;
  position: fixed;
  z-index: 9;
  align-items: center;
}
* {
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

nav img {
  width: 9dvw;
  max-width: 72px;
  margin: 5px;
  z-index: 90;
}

nav p {
  color: white;
  font-size: clamp(0px, 9dvw, 72px);
  margin: 5px;
}

section {
  margin: 0;
  padding: 0;
  display: flex;
  top: 0;
  z-index: 0;
}

#isi {
  padding-top: clamp(60px, 11dvw, 88px);
  padding-left: 20px;
  display: flex;
  top: 0px;
}

/* Animations */
@keyframes move {
  from {
    top: 0px;
  }
  to {
    top: 10vh;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@font-face {
  font-family: liberation-sans-bold;
  src: url(/fonts/LiberationSans-Bold.ttf);
}
