ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
}

li a {
	font-size:15px;
    display: block;
    color: white; 
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
}

li a:hover {
    background-color: lightgray;
    color: black; /* tekst farve - aktiveret menu*/
}