@charset "UTF-8";
/* CSS Document */

/* Color Scheme
-----------------------------

Cadet Grey		#88a2aa		rgba(136, 162, 170, 1)
Quick Silver	#ada296		rgba(173, 162, 150, 1)
Ruddy					#ff0019		rgba(255, 0, 25, 1)
Middle Red		#e2856e		rgba(226, 133, 110, 1)
Eerie Black		#0f1a20		rgba(15, 26, 32, 1)
*/


/* Natural box layout model 
-----------------------------*/
html {
	box-sizing: border-box;
	font-size: 1.1rem;
}
*, *:before, *:after {
  box-sizing: inherit;
}


/* Global styles
-----------------------------*/
body {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	margin: 0;
}
a {
	color: #ff0019;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h1,
h2 {
	margin: 0 auto 20px;
	text-align: center;
	font-variant: small-caps;
}
h1 {
	font-size: 2.2em;
	color: white;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.2em;
	text-align: center;
}
h4 {
	font-size: 1.1em;
	margin: 20px auto 5px;
}
p {
	font-size: 1rem;
}
ul {
	margin: 0;
}
li {
	font-size: 1rem;
	list-style: circle;
}
.content-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 40px;
	overflow: hidden;
}
.btn {
	background: #ada296;
	color: #0f1a20;
	padding: 10px;
	display: inline-block;
	border-radius: 15px;
}


/* Header and Footer
-------------------------*/
header,
footer {
	background: #0f1a20;
	color: #88a2aa;
}
header {
	position: relative;
	text-align: center;
}
footer {
	text-align: center;
}
footer a {
	padding: 10px;
	font-size: 1.1em;
}
.profile-img {
	max-width: 50%;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: #88a2aa;
}
.col-wide p {
	text-align: left;
}
.download {
	position: absolute;
	bottom: 5px;
	right: 50%;
	transform: translate(50%,0);
	transition: color .5s ease-in,
				right 2s ease-in-out,
				transform 2s ease-in-out;
}
.download:hover {
	color: #ff0019;
	text-decoration: none;
}

/* Skills
-------------------------*/
.skills {
	background: #e2856e;
}
.skill-list {
	margin: 0 auto;
	text-align: center;
	-webkit-column-count: 3;
	   -moz-column-count: 3;
			column-count: 3;
	-webkit-column-width: 250px;
	   -moz-column-width: 250px;
			column-width: 250px;
}
.skill-list p {
	width: inherit;
	margin: 0 auto 5px;
	text-align: center;
}


/* Work
-------------------------*/
.work {
	background: #88a2aa;
}
.location {
	font-size: 1em;
	font-weight: 400;
	font-style: italic;
}
.tenure {
	font-size: 1em;
	font-weight: 400;
	font-style: italic;
}


/* School
-------------------------*/
.school {
	background-image: -webkit-linear-gradient(315deg,rgba(173,162,150,0.92) 0%,rgba(173,162,150,0.65) 100%), url(../images/owen1.jpg);
	background-image: -moz-linear-gradient(315deg,rgba(173,162,150,0.92) 0%,rgba(173,162,150,0.65) 100%), url(../images/owen1.jpg);
	background-image: -o-linear-gradient(315deg,rgba(173,162,150,0.92) 0%,rgba(173,162,150,0.65) 100%), url(../images/owen1.jpg);
	background-image: linear-gradient(135deg,rgba(173,162,150,0.92) 0%,rgba(173,162,150,0.65) 100%), url(../images/owen1.jpg);
	background-attachment: fixed;
	background-size: cover;
}
.school h4 {
	margin: 20px auto 0;
}
.school h4 ~ p {
	margin: 0;
	text-indent: 0.5em;
}


/* Media Queries
-------------------------*/
@media (min-width: 680px){

header {
	text-align: left;
}
.profile-img {
	max-width: 30%;
}
.col-narrow {
	width: 30%;
	float: left;
}
.col-wide {
	width: 70%;
	float: left;
	padding-left: 20px;
}
.download {
	position: absolute;
	bottom: 5px;
	right: 5px;
	transform: translate(0,0);
}

}
