.colourDiv {
	background-color: green;
	color: white;
	padding: 25px;
	text-align: center;
}

.colourDiv:hover {
	background-color: blue;
}
.buttonActions:hover{
	background-color: orange;
}

/* unvisited link */
a:link {
	color: red;
}

/* visited link */
a:visited {
	color: green;
}

/* mouse over link */
a:hover {
	color: hotpink;
}

/* selected link */
a:active {
	color: blue;
}


ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
		overflow: hidden;
		border: 1px solid #4573ff;
		background-color: #43a4e6;
	}
	
.button {
	background-color: #4CAF50; /* Green */
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
}