/* CSS - Horizontal Menu */
* {margin: 0; padding: 0;}
* {user-select: none;}
body 
{
	/* background-image: url('../img/background_image_old-wall.png'); */
	background: #edebf9;
}
	


ul li a, ul li
{
	display: inline-block;
	text-align: right;
}

ul li a
{
	padding: 10px;
	font-size: 30px;
	color: white;
	text-decoration: none;
	margin-right: 1px;
}


ul
{
	background-color: slateblue;
	text-align: right;
	padding-top: 7px;
	padding-right: 2px;
	color: white;
}

a
{
	border-radius: 7px 7px 0px 0px;
}

.active
{
	background: white;
	color: slateblue;
}

ul li a:hover
{
	background: #edebf9;
	color: slateblue;
	transition: 500ms;
}

h1
{
	margin: 10px;
	font-family: cursive;
}

p, label, .send_clear
{
	margin-left: 12px;
}