@font-face { font-family: Roman; src: url("Roman SD.ttf"); }
@font-face { font-family: Arial; src: url("arial.ttf"); }
body {background-color: #AEDAF7;}

#header
{
	background-color: #9ADDFF;
	padding: 30px;
	font-family: Roman;
	text-align: center;
	font-size: 50;
	color: #64B4FE;
	text-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
}

@keyframes SlideDown
{
	0%
	{
		
	}
	100%
	{
		
	}
}

#headerimg 
{
	display: block;
	top: 0;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
	margin: auto;
	animation: 0.5s ease SlideDown;
}

button,input,textarea
{
	position: relative;
	display: block;
	top: 50px;
	margin-left: auto;
	margin-right: auto;
}

#email
{
	padding: 12px 12px;
	border: 1px solid #bbb;
	border-radius: 4px;
	width: 550px;
	font-size: 20px;
}

#message
{
	resize: none;
	border: 1px solid #bbb;
	border-radius: 4px;
	height: 180px;
	width: 550px;
	padding: 12px 12px;
	font-family: Arial;
	font-size: 20px;
	margin-top: 10px;
	transition: height 0.4s;
}

#message:focus
{
	height: 230px;
}

#sendButton 
{
	padding: 16px 32px;
	text-align: center;
	font-size: 20px;
	background-color: #5FB4EB; 
	color: white; 
	border: none;
	border-radius: 4px;
	margin-top: 10px;
	width: 550px;
	height: 50px;
	transition: background-color 0.2s, height 0.2s ease;
}

#sendButton:hover 
{
	height: 55px;
	background-color: #3E9AD5;
}

ul 
{
	background-color: #5FB4EB;
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	top: 0;
	position: sticky;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
}

li
{
	float: left;
	border-right: 1px solid #AEDAF7;
	transition: background-color 0.2s ease;
}

a 
{
	display: block;
	font-family: Arial;
	color: white;
	text-align: center;
	padding: 16px 19px;
	text-decoration: none;
	font-size: 15px;
}
li:hover,.active
{
	background-color: #3E9AD5;
}
