/* ------------------- Font ------------------- */
@font-face
{
	font-family: 'scripint';
	src: url('fonts/scripint.ttf') format('truetype');
}

/* ------------------- Body ------------------- */

body
{
	background-color: white;
	margin: 0px;
	font-family: georgia;
}

/* ------------------- Navigation ------------------- */

nav
{
	width: 100%;
	height: 75px;
	position: fixed;
	top: 0px;
	background: #6da2aa;
	z-index: 2;
}

nav .first_letter
{
	text-decoration: underline;
	color: #EFD3B3;
}

nav ul
{
	display: flex;
	list-style-type: none;
	justify-content: center;
}

nav li
{
	margin: 0px 100px;
	margin-top: 5px;
}

nav a
{
	text-decoration: none;
	color: white;
	font-size: 1.8em;
}

nav a:hover
{
	text-decoration: underline;
}

/* ------------------- About Me ------------------- */

#about_me .first_letter
{
	font-size: 1.3em;
	color: #6da2aa;
}

#about_me
{
	margin-top: 75px;
	display: flex;
	justify-content: center;
	padding-top: 30px;
}

#about_me_text
{
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 100px;
}

#about_me_text h3
{
	font-family: scripint;
	font-size: 7.5em;
	margin: 0px;
	z-index: 1;
}

#about_me p
{
	width: 800px;
	font-size: 1.3em;
	text-overflow: wrap;
	color: #EFD3B3;
	margin: 0px;
}

#about_me img
{
	width: 575px;
	display: flex;
}

/* ------------------- Portfolio ------------------- */

#portfolio_anchor
{
	position: relative;
	top: -75px;
}

#portfolio
{
	background: #6da2aa;
	margin: 0px;
	display: flex;
	justify-content: center;
}

#portfolio figure
{
	margin: 35px 25px;
}

#portfolio figcaption
{
	width: 387px;
	position: absolute;
	bottom: -467px;
	background: #EFD3B3;
	color: black;
	text-align: center;
	overflow-wrap: break-word;
	padding: 35px 0px;
	opacity: 0;
}

#portfolio figure:hover figcaption
{
	opacity: 0.65;
	transition-duration: 0.5s;
}

#portfolio figcaption h3, #portfolio figcaption p
{
	margin: 0px;
}

/* ------------------- Footer ------------------- */

footer
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer h3
{
	margin-bottom: 0px;
	font-size: 30px;
}

#linkedin_icon, #instagram_icon, #envelope_icon
{
	font-size: 30px;
	background: #6da2aa;
	color: white;
	padding: 10px;
	border-radius: 50%;
	margin: 20px 10px;
}

footer input, footer textarea
{
	width: 250px;
}

footer textarea
{
	max-width: 250px;
	height: 150px;
}