/*Start of Img selector*/
img {
float: center;
width:40%;
margin-right:25%;
margin-left:25%;
border-radius: 5px;
}
/*End of Img selector*/

/* Start of Body selector */
body {
	background-color: lightskyblue;
}
/* End of Body selector */

/*Start of Header selector*/
.header {
	background-color: ;
	height: 100px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	clear: both;
	font-family: roboto;
}
/*End of Header selector*/

/*Start of Textcontent selector*/
.textcontent {
	background-color: lightslategray;
	height: 80%;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	padding: 15px;
	clear: both;
	border-radius: 30px;
	font-size: 20px;
	font-family: calibri;
}
/*End of Textcontent selector*/

/*Start of Container selector*/
.container {
	background-color: lightskyblue;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 30px;
	float: left;
}
/*End of Container selector*/

/*Start of Menu object*/
.menu {
	background-color: purple;
	height: 50px;
	width: 120px;
	color: white;
	margin-left: 5px;
	padding: 10px;
	float: left;
	margin-left: 10px;
	border-radius: 10px;
}
/*End of Menu object*/


a:link {
color: white;
text-decoration: none;
}

/* visited link */
link:visited {
color: darkred;
text-decoration: none;
}

/* mouse over link */
.menu:hover {
text-decoration: none;
color: hotpink;
}

/* selected link */
.menu:active {
color: yellow;
text-decoration: none;
}