@import url(https://fonts.googleapis.com/css?family=PT+Sans);

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'PT Sans', sans-serif;
	background-color: #ffffff;
	overflow-x: hidden'
	text-align: center;
}

header{
	width: 100%;
	height: 50px;

	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0), 0 3px 6px rgba(0, 0, 0, 0.0); /* ³×ºñ ¹Ø ±×¸²ÀÚ-¾ø¾Ö¸é ±×¸²ÀÚ »ç¶óÁü */
}

header > nav > div{
	float: left;
	width: 16%; /*¸Þ´º°£ °£°Ý*/
	height: 110%;
	position: relative;
}

header > nav > div > a{
	text-align: center;
	width: 100%;
	height: 100%;
	display: block;
	line-height: 50px;
	color: #ffffff;
	transition: background-color 0.2s ease;
	text-transform: uppercase;
}

header > nav > div:hover > a{
	background-color: rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

header > nav > div > div{
	display: none;
	overflow: hidden;
	background-color: white;
	min-width: 100%;

	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	padding: 10px;
}

header > nav > div:not(:first-of-type):not(:last-of-type) > div{
	left: -50%;
	border-radius: 0 0 3px 3px;
}

header > nav > div:first-of-type > div{
	left: 0;
	border-radius: 0 0 3px 0;
}

header > nav > div:last-of-type > div{
	right: 0;
	border-radius: 0 0 0 3px;
}

header > nav > div:hover > div{
	display: block;
}

/* hover over the tabs and you should see the menu drop down! now to style them... */

header > nav > div > div > a{
	display: block;
	float: center;
	padding: 5px 5px;
	width: 96%;
	margin: 2%;
	text-align: center;
	background-color: a37ab0;
	color: #fbfbfb;
	border-radius: 0px;
	transition: background-color 0.2s ease;
}

header > nav > div > div > a:hover{
	background-color: 6b1685;
	cursor: pointer;
}

@media (max-width: 600px){
	header > nav > div > div > a{
		margin: 5px 0;
		width: 100%;
	}
	header > nav > div > a > span{
		display: none;
	}

/* that's it! re-size the window to see the responsive effect in action */
}