/* About */
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
}
html { 
    background: url(achtergrond.jpg) no-repeat top fixed; 
    background-size: cover;
  }
body {
    display: flex;
    max-width: 100%;
    height: 70px;
    flex-wrap: wrap;
}

/* Navigatie bar */
ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 10px 10px 10px 10px;
    font-size: 1.5rem;
    color: #ffffff
}
nav {
    height: 160px;
    width: 160vw;
}
ul li .logo {
    position: absolute;
    left: 2vw;
    transition: transform .5s;
}
.logo img:hover{
    transform: scale(1.15);
}
ul li a {
    color: white;
    text-decoration: none;
    font-weight: 100;
}
ul .navtekst {
    display: flex;
    gap: 50px;
    padding-top: 0.6%;
}
ul li a:hover, ul li a:active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}