.header{
	background-color: black;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	height: 75px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index:100;
	border-width:5px;
	border-color:grey;
	border-style: none;
	border-bottom-style: solid;
}

.left-header{
	background-color: black;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.my-logo{
	height: 60px;
	padding: 15px;
}

.my-name{}

.middle-header{
	background-color: black;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex: 1;
	align-items: center;
	margin-left: 50px;
	margin-right: 50px;
	max-width: 600px;
}
.name-button{
	background-color:black;
	padding: 5px;
	margin: 5px;
	height: 75px;
	width: 200px;
	color: white;
	border: none;
	font-size:30px;
	transition-property: font-size,background-color;
	transition-duration:0.5s;
}

.about-me-button,
.my-projects-button,
.contact-info-button{
	background-color:black;
	

	height: 75px;
	width: 100px;
	color: white;
	border: none;
	font-size:14px;
	transition-property: font-size,background-color;
	transition-duration:0.5s;
}
.about-me-button:hover,
.my-projects-button:hover,
.contact-info-button:hover{
	background-color:#331a00;
	cursor: pointer;
	font-size:16px;
}

.name-button:hover{
	background-color:#331a00;
	cursor: pointer;
}












