@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  text-decoration: none;
  font: inherit;
}

body {
  margin: 0 auto;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

@keyframes display {
  0% {
    transform: translate(0px);
    opacity: 0;
  }
  10% {
    transform: translate(0);
    opacity: 1;
  }
  20% {
    transform: translate(0);
    opacity: 1;
  }
  30% {
    transform: translate(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}



.pic-ctn > img {
  position: fixed;
  top: 22.5%;
  left: 24%;
  width: 52vw;
  height: 31vw;
  opacity: 0;
  animation: display 10s infinite;
}

img:nth-child(2) {
  animation-delay: 4s;
}
img:nth-child(3) {
  animation-delay: 6s;
}
img:nth-child(3) {
  animation-delay: 8s;
}

.nav {
  display: inline;
  position: fixed;
  right: 5px;
  top: 0px;
  word-spacing: 13px;
}

.nav a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.nav a:hover {
  color: rgb(101, 101, 101);
}

.first {
  position: fixed;
  left: 5px;
  top:0px;
  font-family: "Noto Sans KR", sans-serif;
}

.copy {
  display: inline;
  position: fixed;
  left: 5px;
  bottom: 0px;
  font-size: 10px;
}