/* Basislayout */

html, body {
    height: 100%;
    padding: 0;
    background-color: #ffffff;
    background-image: url(achtergrond.jpeg);
    color: #303030;
    font: Verdana, Arial, Sans-Serif;
}

main {
    margin: auto;
    width: 700px;
    position: relative;
}


article {
    text-align: justify;
}


header {
    color: red;
    text-align: center;
}


footer {
    text-align: center;
    padding-bottom: 10px;
}


/* specifieke stijlen */

.zweefLinks {
    float: left;
    margin-right: 15px;
    width: 250px;
    
}

.zweefRechts {
    float: right;
    margin-right: 15px;
    width: 250px;
    
}

.zweefMidden {
    display: block;
    margin-right: auto;
    margin-left: auto;
    
}

.smalltext {
    font-size: 0.7em;
}

a {
    color: red;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* navigatiebalk */
nav ul {
    list-style-type: none;
    margin: auto;
    padding: 0;
    background-color: #aaaaaa;
    overflow: hidden;
}

nav li {
    float: left;
}

nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
}

nav li a:hover {
    background-color: #ff8080;
}

nav li .active {
    background-color: red;
    text-decoration: underline;
}




