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

body {
	font-family:'Source Sans Pro', sans-serif;
	height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*link styling*/
a {color: inherit;
   text-decoration: none;}
a:link {text-decoration:none;
	color:inherit;}
a:visited {text-decoration:none;
	color:inherit;}
a:hover {text-decoration:none;
	color:inherit;}

hr {
    margin-bottom: 10px;
	margin-left: 0px;
	width:50px;
    border-top: 5px solid #fff100;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

/*Headline styling*/
.large{
	font-weight: 700;
    color: #111111;
    font-size: 100px;
    text-align: left;
	margin-bottom: 44px;
}

.subhead{
	font-weight: 400;
    color: #111111;
    font-size: 30px;
    text-align: left;
    padding-top: 10px;
	width:65%;
	line-height: 150%;
}

.subhead2{
	font-size: 40px;
	margin-top:100px;
	}

.contactme{
	color: #111111;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 700;
	margin-bottom: 12px;
}

.contact{
	text-align:left;
}

.resume{
    font-weight: 700;
    margin: 16px 0;
	color: #111111;
    border: 4px #111111 solid;
    width: 120px;
    border-radius: 6px;
    font-size: 16px;
	 -webkit-transition-timing-function: background-color .5s ease-in-out;
   -webkit-transition: background-color .5s;
   transition: background-color .5s;
	height: 52px;
    line-height: 16px;
	background-color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}


.resume:hover{
	background-color: #f1f1f1;
	color: #000000;
}

.resume2{
	background-color: #111111;
	color:white;
}

.resume2:hover{
	background-color: #111111;
	color: white;
	opacity: .95;
}

@media only screen and (max-width: 768px){

.large{
	font-size: 70px;
	line-height: 80px;
	padding-right: 25px;
    padding-top: 10px;
    width: 100%;
	margin-top: 60px;
    margin-bottom: 30px;
}
	

.subhead{
	font-size: 20px;
    padding-right: 25px;
    padding-top: 10px;
    width: 100%;
}

.container {
	padding-right: 20px;
}

footer{
	display:none;
}
	
}