* {
	margin: 0;
	padding: 0;
	font-family: 'Urbanist', 'Helvetica', sans-serif;
	font-size: 16px;
	font-weight: 200;
	line-height: 2.2;

}
html {
	scroll-behavior: smooth;
}

h1, h2, h3, h4 {
	letter-spacing: 0.5px;
}

strong {
	font-weight: 400;
	font-size: inherit;
}
h1  {
	font-family: 'Archivo Black', 'Helvetica', 'Arial', sans-serif;
	font-size: 96px;
	position: absolute;
	top: 20px;
	left: 20px;
	text-transform: uppercase;
	z-index: 2;
	letter-spacing: 5px;
	line-height: 1;
}

h2 {
	font-family: 'Archivo Black', 'Helvetica', 'Arial', sans-serif;
	font-size: 48px;
	line-height: 1;
}
h3 {
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	padding: 15px 0;
}
h4 {
	font-weight: 700;
	font-size: 21px;
	line-height: 1;
	padding: 10px 0;
}
@media only screen and (max-width: 700px) {
	h1 {
		font-size: 60px;
		letter-spacing: 1px;
		position: absolute;
		top: 50px;
	}
	h2 {
		font-size: 36px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 18px;
	}
}
/* menu */
#menu-wrapper {
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
	background-color: #fff;
	height: 43px;
}
.menu {
	font-family: 'Urbanist', 'Helvetica', sans-serif;
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-right: 15px;
	padding-top: 3px;
	overflow: hidden;
}
.menu li {
  float: right;
}
.menu li a {
	text-align: center;
	padding: 16px;
	text-decoration: none;
	color: #000;
	line-height: 1;
}
.menu li a:hover {
	color: #fff;
	background-color: #222;
}
.sticky {
	position: fixed;
  top: 0;
  width: 100%;
}
/* profile */
.profile {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	width: 100%;
	align-items: flex-end;
	margin-top: 40px;
}
@media only screen and (max-width: 700px) {
	.profile {
		margin-top: 70px;
	}
}
.profile-left {
	margin-right: 20px;
	padding-left: 100px;
}
.profile-left img {
	max-width: 300px;
}
.profile-right {
	max-width: 400px;
	padding-right: 20px;
	padding-top: 20px;
}

@media only screen and (max-width: 700px) {
	.profile {
		flex-wrap: wrap;
	}
	.profile-left {
		width: 100%;
		text-align: center;
		margin-right: 0;
		padding-left: 0;
	}
	.profile-right {
		max-width: 90%;
		margin-left: 0;
		margin-right: 0;
	}
}
/* works */
.list li, .list li a, .list-par {
	font-size: 14px;
}
.list li a, p a {
	color: #ff66cc;
}
.list li a:hover, p a:hover {
	color: #fff;
	background-color: #ff66cc;
	transition: 0.7s;
}
.list li span {
	font-size: 12px;
}
.list li em {
	font-family: "Noto Sans KR", sans-serif;
	font-size: 12px;
}
.list {
	list-style-type: none;
}
.list li:before {
	content: "‣ ";
}
.list .li-lv2 {
	list-style-type: none;
	margin-left: 20px;
}
.list .li-lv2:before {
	
	content: "- ";
}

.works {
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 50px;
}
.works-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.works .one-col {
	width: calc(80vw + 20px);
	margin-left: auto;
	margin-right: auto;
}
.works .two-cols {
	width: 40vw;
	padding: 10px;
}

@media only screen and (max-width: 700px) {
	.works .one-col {
		width: 100vw;
		padding: 10px;
		padding-top: 0;
	}
	.works .two-cols {
		width: 100vw;
		padding-top: 0;
		padding-bottom: 0;
	}
}
/* Contact */
#contact {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-right: 20px;
	padding-left: 20px;
	margin-top: 50px;
}
#contact h2 {
	padding-right: 20px;
}
.contact-button {
	all: unset;
	display:inline-block;
	max-width:100%;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	background-color:#000;
	color:#fff;
	font-size:20px;
	border-radius:5px;
	padding:0 15px;
	font-weight: 700;
	height:50px;
	cursor:pointer;
	line-height:50px;
	text-align:center;
	margin:0;
	text-decoration:none;
	transition: 0.3s;
}
.contact-button:hover {
	background-color: #fff;
	color: #000;
	border: 2px solid #000;
}
.contact p {
	width: 100%;
}
.contact p a {
	color: #ff66cc;
}
.contact p a:hover {
	background-color: #ff66cc;
	color: #fff;
}
@media only screen and (max-width: 700px) {
	.contact-button {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

footer {
	padding-top: 50px;
}