@font-face {
  font-display: swap;
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nanum-gothic-v23-latin-regular.eot');
  src: url('../fonts/nanum-gothic-v23-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/nanum-gothic-v23-latin-regular.woff2') format('woff2'),
    url('../fonts/nanum-gothic-v23-latin-regular.woff') format('woff'),
    url('../fonts/nanum-gothic-v23-latin-regular.ttf') format('truetype'),
    url('../fonts/nanum-gothic-v23-latin-regular.svg#NanumGothic') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/nanum-gothic-v23-latin-700.eot');
  src: url('../fonts/nanum-gothic-v23-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/nanum-gothic-v23-latin-700.woff2') format('woff2'),
    url('../fonts/nanum-gothic-v23-latin-700.woff') format('woff'),
    url('../fonts/nanum-gothic-v23-latin-700.ttf') format('truetype'),
    url('../fonts/nanum-gothic-v23-latin-700.svg#NanumGothic') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/nanum-gothic-v23-latin-800.eot');
  src: url('../fonts/nanum-gothic-v23-latin-800.eot?#iefix') format('embedded-opentype'),
    url('../fonts/nanum-gothic-v23-latin-800.woff2') format('woff2'),
    url('../fonts/nanum-gothic-v23-latin-800.woff') format('woff'),
    url('../fonts/nanum-gothic-v23-latin-800.ttf') format('truetype'),
    url('../fonts/nanum-gothic-v23-latin-800.svg#NanumGothic') format('svg');
}




:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Nanum Gothic', sans-serif;
  color: #000;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 910px;
  margin: 16px auto;
  border: 1px solid #777;
  overflow: hidden;
  background-color: #fff;
  font-size: 13px;
}

h1 {
  margin: 24px 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: rgb(162, 0, 103);
}

h2 {
  margin: 30px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

p:not(:last-of-type) {
  margin-bottom: 24px;
}

header {
  padding: 16px 16px 0;
}

article {
  padding: 16px;
}

footer {
  padding: 16px;
}

footer a {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(162, 0, 103);
  background-color: rgb(162, 0, 103);
  outline: none;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  color: rgb(255, 255, 255);
  border: 2px solid transparent;
  padding: 0px 1.25rem;
  height: 3rem;
  font-size: 1rem;
  --btn-radius: 0rem;
  border-radius: var(--btn-radius);
  width: fit-content;
  min-width: 80px;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  color: #fff !important;
}

footer a:hover {
  background-color: rgb(111, 0, 71);
}

img {
  max-width: 100%;
  vertical-align: middle;
}



ul {
  margin: 0 0 16px;
  list-style: none;
}

ul li {
  padding-left: 24px;
  margin: 12px 0;
}

ul li:before {
  content: "\2022";
  color: #AAAFB4;
  float: left;
  margin-top: 1px;
  font-size: 16px;
  line-height: 1em;
  text-indent: -18px;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.center {
  font-size: 18px;
  text-align: center;
}

.info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.info span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

figure {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
}

figure img {
  vertical-align: bottom;
}

@keyframes slidy {
  0% {
    opacity: 0;
  }

  6.6% {
    opacity: 1;
  }

  33.3% {
    opacity: 1;
  }

  39.9% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

figure img:nth-of-type(1) {
  position: relative;
}

figure img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  animation: slidy 15s linear 0s infinite normal forwards;
}

figure img:nth-child(2) {
  animation-delay: 5s;
}

figure img:nth-child(3) {
  animation-delay: 10s;
}

@media all and (max-width:910px) {
  #wrapper {
    margin: 0;
    padding: 19px;
    border: none;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  br:not(footer br) {
    display: none;
  }
}