html, body{
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative; 
	width: 100%; 
	margin: 0;
	font: 18px "Adelle", serif;
}

html{
	/* background: linear-gradient(100deg, #293A4A, #293A4A 100%); */
	background: #293A4A;
}

body{
	padding: 3vh; 
	border-radius: 14px;
}

body > div:first-of-type { border-radius: 14px 14px 0 0; }
body > div:last-of-type { border-radius: 0 0 14px 14px; }


header{
	position: absolute; top: 0; left: 0;
	width: inherit; box-sizing: border-box;
	padding: 75px 90px;
	display: flex;
	align-items: center; z-index: 1;
}

#homeLink{
	display: flex;
	align-items: center;
	text-decoration: none;
	margin-right: 14px;
}

#navLinks{
	margin-left: auto;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: none;
}

#navLinks a img{ vertical-align:bottom; }

#resume{ margin-left: 60px; }

#name {
	margin-left: 17px;
	color: #293A4A;
	font: normal 800 20px "Montserrat", sans-serif;
}

footer{
	margin: 90px 0;
	text-align: center;
	color: #B1B7BA;
	font-size: 18px;
}

.footerSocial{
	margin-bottom: 20px;
}

.footerSocial a{
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #405060;
	border-radius: 20px;
	margin: 0 20px;
	transition: .3s;
}

.footerSocial a:hover{ background-color: #23313F; }
.footerSocial a:hover img{ filter: saturate(8) }

.footerSocial a img{
	position: relative;
	top: 10px;
}

.heroText{
	padding: 0 200px;
}

.make-red{ color:#E74C3C; }

.btn-main{
	position: relative;
	border: 3px solid #2D3F51;
	border-radius: 100px;
	padding: 0px 34px;
	height: 52px;
	text-align: center;
	vertical-align: middle;
	line-height: 48px;
	display: inline-block;
	box-sizing: content-box;
	color: #2D3F51;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	-moz-font-feature-settings: "c2sc", "smcp";
    -ms-font-feature-settings: "c2sc", "smcp";
    -webkit-font-feature-settings: "c2sc", "smcp";
    font-feature-settings: "c2sc", "smcp";
	-webkit-transform: translateZ(0);
	transform: scale(1, 1);
	transition: .2s;
}

.btn-main:hover{
	/* border-color: #FF7260; */
	border-color: rgba(255, 114, 96, 0);
	color: #ffffff;
}

.btn-main::before{
	content: "";
	position: absolute;
	box-sizing: border-box;
	/* border: 2px solid #FEF9F8; */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 100px;
	opacity: 0;
	background: #FF7260;
	transition: 0.25s ease-out;
	transform: scale(0.25, 1);
	animation: color-change 8s ease-in-out infinite;
	animation-direction: alternate;
}

.btn-main:hover::before{
	opacity: 1;
	transform: scale(1.1, 1.1);
}

@keyframes color-change {
    0%  {background-color: #FFC695;}
	50% {background-color: #FF7260;}
	100% {background-color: #F260FF;}
}

.quoteMarks{
	/* position: absolute; */
	z-index: 0;
	/* font: 600px Montserrat; */
	vertical-align: baseline;
}

.quotesPath{ fill: #fff; }

.quote{
	font-size: 60px;
	line-height: 1.5em;
	font-family: "bree", sans-serif;
	font-style: italic;
	font-weight: 250; position: relative; 
}



/*----Typography----*/
h1{
	font: 250 140px "bree", sans-serif;
	letter-spacing: -3px; 
	line-height: .88em;
	color: #253443;
	margin: 18px 0;
}

h2{
	font: normal 32px "adelle", serif;
	letter-spacing: 1px;
	color: #253443;
	/* font: normal 250 32px "bree", sans-serif; font: italic Bree; */
	/* color: #2D3F51; */
}

h3{
	font-size: 28px;
	font-weight: bold;
	color: #2D3F51;
	margin-top: 22px;
	margin-bottom: 14px;
}

h4{
	font: bold 26px "adelle", serif;
	color: #EF6351;
	-moz-font-feature-settings: "c2sc", "smcp";
    -ms-font-feature-settings: "c2sc", "smcp";
    -webkit-font-feature-settings: "c2sc", "smcp";
    font-feature-settings: "c2sc", "smcp";
	margin-bottom: 0px;
}

.label{
	font: 15px Montserrat;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #BAB170;
}

.heroSubtext{
	font: 500 24px "adelle", serif;
	color: #405060;
}

.small-caps{
    -moz-font-feature-settings: "c2sc", "smcp";
    -ms-font-feature-settings: "c2sc", "smcp";
    -webkit-font-feature-settings: "c2sc", "smcp";
    font-feature-settings: "c2sc", "smcp";
    letter-spacing: 0.05em;
}

.center{ text-align: center; }

/*------Media Queries------*/
@media (max-width: 1440px) {
	.heroText{ padding: 0 12%; }
}

@media (max-width: 1200px) {
	body{ padding: 20px; }
	header{ padding: 60px 6.5%; }
	#resume{ margin-left: 52px; }
	h1{ font-size: 125px; }
}

@media (max-width: 960px) {
	header{ padding: 60px 60px; }
	#logo{ width: 52px; }
	#name { margin-left: 14px; font-size: 19px; }
	#resume{ margin-left: 44px; }
	#work img, #resume img{ height: 32px; }
	/* .heroText{ padding: 0 80px; } */
	h1{ font-size: 110px; }
	.quote{ font-size: 53px; }
}

@media (max-width: 780px) {
	header{ padding: 52px 54px; }
	#logo{ width: 48px; }
	#name { margin-left: 12px; font-size: 18px; }
	#resume{ margin-left: 30px; }
	#work img, #resume img{ height: 27px; }
	.heroSubtext{ font-size: 22px; }
	h1{ font-size: 96px; }
	h3{ font-size: 26px; }
	h4{ font-size: 24px; }
	.quote{ font-size: 48px; }
}

@media (max-width: 650px) {
	h1{ font-size: 85px; }
	.heroText{ padding: 0 60px; }
	.heroSubtext{ font-size: 20px; }
	.quote{ font-size: 41px; }
}

@media (max-width: 480px) {
	body{ padding: 3%; }
	header{ padding: 8.5%; }
	#logo{ width: 35px; }
	#name { margin-left: 6px; font-size: 16px; }
	#resume{ margin-left: 24px; }
	#work img, #resume img{ height: 25px; }
	.btn-main{ padding: 0px 28px; height: 50px; line-height: 48px; }
	h1{ font-size: 74px; }
	h2{ /*font-size: 28px;*/ }
	h3{ font-size: 24px; }
	h4{ font-size: 22px; }
	.heroText{ padding: 0 13%; }
	.heroSubtext{ font-size: 19px; }
	.quote{ font-size: 36px; }
	.quoteMarks{ width: 180px; }
}

@media (max-width: 330px) {
	header{ padding: 10%; }
	#logo{ width: 30px; }
	#name { margin-left: 5px; font-size: 14px; }
	#resume{ margin-left: 16px; }
	#work img, #resume img{ height: 24px; }
	.btn-main{ padding: 0px 26px; height: 48px; line-height: 46px; }
	h2{ /*font-size: 24px;*/ }
	h3{ font-size: 22px; }
	.quoteMarks{ width: 120px; }
}