/* body */
body {
	height: 100%;
	width: 100%;
	margin: 0;
	
	line-height: 1.5;
	font-family: 'Trebuchet MS', 'Helvetica';
	text-decoration: none;
}

/* header section */
.header {
	background-image: url("../img/spirited_away.jpg");
	background-size: cover;
	-webkit-background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	width: 100%;
	height: 100vh;
}

.title {
	display: inline-block;
	padding: 5%;
	list-style-type: none;
	text-shadow: 0 1px #000000;
}

.title a {
	font-size: 25px;
	color: white;
	text-decoration: none;
}

/* personal section */
.personal {
	/*width: 100%;
	height: 100vh;*/

	display: flex;
	flex-wrap: wrap;
}

.side {
	flex: 20%;
	padding: 20px;
	
	background-color: #bbb;
}

.main {
	flex: 50%;
	padding: 20px;
	height: 100%;
	
	
}

/*.main:after {
	content: "";
	display: table;
	clear: both;
}*/

.container {
	text-align: left;
}

.box {
	width: 25%;
	height: 100%;
	padding: 20px;
	float: left;
	box-sizing: border-box;
}

.experience_box {
	width: 50%;
	height: 100%;
	padding: 20px;
	float: left;
	box-sizing: border-box;
}

.picture_container {
	text-align: center;
	margin-bottom: 20px;
}

.picture_container img {
	display: block;
	margin: 0 auto;
}

/* box colors */
#box_1 {
	background-color: #aaa;
}

#box_2 {
	background-color: #bbb;
}

#box_3 {
	background-color: #ccc;
}

#box_4 {
	background-color: #ddd;
}

#box_100 {
	background-color: #aaa;
	width: 100%;
}

.box:hover {
	background-color: #eee;
}

@media screen and (max-width: 1000px) {
	.box {
		width: 50%;
	}
}

@media screen and (max-width: 460px) {
	.box {
		width: 100%;
	}
	
	.about, .main {
		flex-direction: column;
	}
}

/* experience section */
.experience {
	background-color: #eee;
	
	display: flex;
	flex-wrap: wrap;
}

/* footer */
.footer {
	background-color: #333;
	padding: 15px;
	text-align: center;
	color: white;
}

/* text sizes */
h1 {
	margin: 0px;
	padding-bottom: 5px;
	font-size: 50px;
	line-height: 1;
	color: white;
}

@media screen and (min-width: 1000px) {
	h1 {
		font-size: 4vw;
	}
}

@media screen and (max-width: 460px) {
	.header {
		text-align: center;
	}
	
	h1 {
		padding-top: 150px;
		padding-bottom: 30px;
	}

	.title a {
		font-size: 20px;
	}
}

h2 {
	margin: 0px;
	margin-bottom: 20px;
}

h3 {
	margin: 0px;
	margin-bottom: 20px;
}

h4 {
	margin: 0px;
	margin-bottom: 20px;
	line-height: 0;
}

p {
	margin: 0px;
}

#title_link {
	font-size: 18px;
	margin: 0;
	#margin-bottom: 20px;
	
	color: black;
}

/* links */
.contact a {
	color: white;
}

a:link {
	color: white;
}

a:visited {
	color: white;
}

a:hover {
	color: #ABB2B9;
}

a:active {
	position: relative;
	bottom: -2px;
}

/* navbar */
.navbar {
	padding-left: 15px;
	display: flex;
	background-color: #333;
	
	position: sticky;
	top: 0;
}

.navbar li {
	padding: 5px 10px 0px;
	display: inline;
	float: left;
	
	border-bottom-style: solid;
	border-color: #333;
}

.navbar a {'
	text-decoration: none;
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 5px 2px;
	
	/*border-radius: 5px;*/
}

.navbar li:hover {
	border-bottom-color: white;
}

.navbar li a:hover {
	color: white;
}

/*
future ideas

image slideshow
change navbar on mobile devices
*/