body {
  margin: 0;
  padding: 0;
  font-family: 'Nanum Gothic','Malgun Gothic','Dotum','AppleGothic','gulim',sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #6d6e71;
  background-color: #fff;
  line-height: 1.48;
  -webkit-text-size-adjust: none;
}

.container {
 width: 100%;
  max-width: 547px;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInAll 1s ease-out forwards;
  box-sizing: border-box; /* 이거 무조건! */
        padding: 0 24px; /* 양옆 24px 패딩! */
}

@keyframes fadeInAll {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 /* {
  outline: 1px solid red !important;
}*/
 h1 {
  text-align: center;
  font-size: clamp(8px, 6vw, 28px);
  letter-spacing: 0.1em;
  color: #222;
  margin: 46px 0 16px 0;
  white-space: nowrap;
}

nav {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
   white-space: nowrap;
}

nav a {
  margin: 0 9px;
 font-size: clamp(2px, 3.5vw, 14px);
  text-decoration: none;
  color: #666;
}

nav a.on,
nav a:hover {
  font-weight: bold;
  color: #111;
}

section {
  margin-bottom: 40px;
}

p {
  margin: 0 0 10px 0;
}

.contact {
  margin-top: 45px;
  font-size: 13px;
  color: #666;
}

.email a {
  color: #0073e6;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

