@charset "utf-8";

h1 {
    font-family: "Italiana", serif;
    font-weight: 450;
	text-align: center;
	font-size: 48px;
	letter-spacing: 1.5px;
	color: white;
}

h2 {
	font-family: "Italiana", serif;
    font-weight: bold;
	text-align: center;
	font-size: 32px;
	color: #304D30;
	margin: 10px;
}

h3 {
	font-family: "Raleway", sans-serif;
	text-align: center;
	font-size: 24px;
	color: #304D30;
	padding: 10px;
}

.frame {
	background-color: #304D30;
	width: 80%;
	margin: 0 10%;
	height: auto;
	border-radius: 25px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
	
}

.header {
	height: auto;
	padding: 10px;
}

.image {
	text-align: center;
	margin: 25px 0;
}

.image img {
	height: 150px;
	width: 150px;
	object-fit: cover;
	border-radius: 50%;
	
}

nav {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background-color: #F1EFEF;
	
	text-align: center;
	font-size: 24px;
	font-family: "Raleway", sans-serif;
	text-transform: uppercase;
	
	border-bottom: 20px solid transparent;
	border-image: url("../images/long-border.png") 375 repeat;
}

nav a {
	color: #304D30;
	text-decoration: none;
	margin: 0 15px;
	transition: color 0.3s ease;
}

nav a:hover {
	color: #B6C4B6;
}

nav img {
	display: inline-block;
	width: 100px;
	border-image-repeat: repeat-x;
}

section {
	display: none;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

section .text {
	background-color: white;
	width: 90%;
	margin: 20px 5% 0px 5%;
	padding: 20px;
	box-sizing: border-box;
}

section p {
	margin: 0;
	font-size: 18px;
	font-family: "Raleway", sans-serif;
	text-align: left;
}

section.active {
	display: inline-block;
}

#home{
	background-color: #F1EFEF;
	padding: 10px;
}

#resume {
	background-color: #F1EFEF;
	padding: 10px;
}

#GRFX {
	background-color: #F1EFEF;
	padding: 10px;
}

#CW {
	background-color: #F1EFEF;
	padding: 10px;
	text-align: center;
}

#CW p, h3 {
	text-align: center;
	margin: 0;
	padding-bottom: 10px;
}

.footer {
	display: flex;
	justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
}

.footer-icon {
	display: flex;
	width: 40px;
    height: 40px;
	transition: color 0.3s ease;
	color: #304D30; 
    margin: 0 10px;
	align-items: center; 
    justify-content: center;
}

.footer-icon:hover {
	color: #B6C4B6;
}

embed {
	height: 1000px;
	width: 90%;
	margin: 0 5%;
}

