:root {
  --default-font-size: 125%;
  --default-transduration: 0.5s;
  --Header-color: #613EA0;
  --Header-background: rgba(200,187,222,0.7);
  --Nav-color: #3A2560;
  --Nav-background: #F4F4F4;
  --Wrap-background: #FFFFFF;
  --Contents-width-desktop: 1200px;
  --Contents-width-mobile: 600px;
  --Contents-color: #000000;
  --Contents-background: #F7F7FD;
  --Footer-color: #636363;
  --Footer-background: #FFFFFF;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family:'Noto Sans KR', sans-serif;
}
/* Header 관련 스타일 적용 */
.Header {
  margin: 0;
  padding: 0;
  top: 0;
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 2;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: calc(var(--default-font-size) + 50%);
  color: var(--Header-color);
  background-color: var(--Header-background);
  transition: all calc(var(--default-transduration) + 0.25s);
}
.Header_container {
  margin: auto;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  transition: all calc(var(--default-transduration) + 0.25s);
}
#Header.-active {
  padding-left: 14%;
  width: 86%;
}
.header_name {
  width: 15%;
  font-size: calc(var(--default-font-size) - 75%);
}
.menubutton {
  margin-top: 0.5%;
  margin-left: 1%;
  overflow: hidden;
  float: left;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  align-items: center;
  transition: all var(--default-transduration) ease-in-out;
}
.line {
  margin: 15% auto;
  width: 60%;
  height: 8%;
  box-sizing: border-box;
  display: block;
  background-color: #1E1E1E;
  transition: all 0.5s ease-in-out;
}
#Menu.-active .line:nth-child(1){
  transform: translateX(-40%) translateY(140%) rotate(-45deg);
  width: 40%;
}
#Menu.-active .line:nth-child(3){
  transform: translateX(-40%) translateY(-140%) rotate(45deg);
  width: 40%;
}
div.menu {
  width: 500px;
}
a.menu {
  margin-left: 3%;
  width: 10%;
  height: 100%;
  text-decoration: none;
  font-weight: 600;
  color: var(--Header-color);
}
a.menu:hover {
  color: #3EA061;
}
a.menu:active {
  color: #1F5030;
}
/* Navigation 관련 스타일 적용 */
.Nav {
  margin-left: -1%;
  border-right: solid 3px #000000;
  overflow: hidden;
  position:fixed;
  width: 0;
  height: 100%;
  z-index: 3;
  color: var(--Nav-color);
  background-color: var(--Nav-background);
  font-size: var(--default-font-size);
  transition: all calc(var(--default-transduration) + 0.25s);
}
#Nav.-active {
  width: 15%;
}
.Nav_inner {
  margin: 10%;
  margin-left: 12%;
  width: 80%;
  height: 80%;
  display: none;
}
#Nav_inner.-active {
  display: block;
}
div.Nav_header {
  margin: 10% auto;
  margin-top: 20%;
  margin-bottom: 5%;
  font-size: calc(var(--default-font-size) + 5%);
}
a.Nav_header {
  text-decoration: none;
  color: var(--Nav-color);
}
span.Nav_header_name {
  font-size: calc(var(--default-font-size) - 85%);
}
div.Nav_home {
  margin: 10% auto;
  font-size: calc(var(--default-font-size) - 15%);
}
a.Nav_home {
  text-decoration: none;
  color: var(--Nav-color);
}
a.Nav_home:hover {
  text-decoration: underline;
}
ul.Nav_list {
  padding: 0;
  list-style: none;
}
li.Nav_list {
  margin-top: 2%;
}
a.Nav_list {
  text-decoration: none;
  color: var(--Nav-color);
}
a.Nav_list:hover {
  text-decoration: underline;
}
/* Contents 관련 스타일 적용 */
.MainWrap {
  margin: 0;
  border-bottom: solid 0.5px #DADADA;
  background-color: var(--Wrap-background);
}
.Contents {
  margin-left: auto;
  margin-right: auto;
  padding: 2%;
  padding-top: 4%;
  position: relative;
  width: 1200px;
  height: auto;
  color: var(--Contents-color);
  background-color: var(--Contents-background);
  font-size: var(--default-font-size);
  z-index: 0;
}
div.cwn_img {
  width: 1200px;
  opacity: 0.8;
  z-index: 1;
}
img.cwn_img {
  width: 100%;
  height: 100%;
}
div.Contents_img {
  margin: auto;
  margin-top: 50px;
  width: 600px;
  height: auto;
}
img.Contents_img {
  width: 100%;
  height: 100%;
}
a.Contents_title {
  text-decoration: none;
  text-align: center;
  color: var(--Contents-color);
}
a.Contents_title:hover {
  color: #5A5A5A;
}
h1.Contents_title {
  margin-bottom: 0;
  font-size: calc(var(--default-font-size) + 50%);
}
h2.Contents_title {
  padding-bottom: 20px;
  border-bottom: solid 1px #323232;
  font-size: calc(var(--default-font-size) + 15%);
}
p.Contents_title {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: calc(var(--default-font-size) - 50%);
}
/* Footer 관련 스타일 적용 */
.Footer {
  margin: 0 auto;
  position: relative;
  width: 1300px;
  height: 5%;
  color: var(--Footer-color);
  background-color: var(--Footer-background);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div.github {
  margin: 0;
}
a.github {
  font-size: var(--default-font-size);
  color: inherit;
  text-decoration: none;
}
a.github:hover {
  color: #000000;
}
div.designed {
  margin: 0;
  font-size: calc(var(--default-font-size) - 50%);
}
/* 기타 문단 스타일 활용 */
div.block {
  width: auto;
  height: 30px;
}
div.paragraph_title {
  margin: auto 20px;
  padding: 10px 3px;
  border-bottom: solid 1px #737373;
  max-width: 100%;
  font-size: calc(var(--default-font-size) + 5%);
  font-weight: 600;
}
div.paragraph_subtitle {
  margin: 10px 20px;
  margin-top: 60px;
  padding: 10px 20px;
  max-width: 100%;
  border-left: solid 3px #E5E5E5;
  font-size: var(--default-font-size);
}
div.paragraph {
  margin: auto 20px;
  padding: 2px 3px;
  max-width: 100%;
  white-space: pre-wrap;
  font-size: calc(var(--default-font-size) - 30%);
}
span.paragraph_date {
  margin: auto 10px;
  color: #AA8C74;
}
span.paragraph_link {
  border-left: solid 4px #323232;
  padding-left: 10px;
}
a.paragraph_link {
  text-decoration: underline;
  text-decoration-color: #B9B9B9;
  color: #67A9EB;
}
div.thumbnail {
  margin: 50px auto;
  width: 800px;
}
img.thumbnail {
  width: 100%;
  height: 100%;
}
div.codeblock {
  margin: auto;
  width: 90%;
  background-color: #0F3A58;
  color: #F2F2FF;
  text-shadow: 0 0 5px #c0bc46;
  font-size: calc(var(--default-font-size) - 35%);
}
li.code {
  margin-left: 10px;
}
li.code::marker {
  content: counter(list-item) " |  ";
  color: #A3A3FF;
}
div.attach {
  margin-top: 30px;
  padding: 5px;
  border: solid 1px #838383;
}
p.attach {
  margin: 0;
  padding: 0;
}
a.attach {
  text-decoration: none;
  color: #6C5844;
}
a.attach::after {
  content: ' ';
  display: block;
}
a.attach:hover {
  text-decoration: underline;
  color: #B5ABA1;
}