/* UTILITIES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  
body {
  font-family: sans-serif;
  background-image: url("/afbeeldingen/background.jpg");
  background-repeat: repeat-y;
  background-size: 100%;
}

.main {
  padding: 40px;
}
  
a {
  text-decoration: none;
}
  
li {
  list-style: none;
}
.producten {
  display: flex;
  flex-wrap: wrap;
}

.prodKlein {
  width: 250px;
  text-align: center;
  border-style: solid;
  border-radius: 4px;
  border-color: black;
  margin: 15px;
}

.prodKlein p {
  padding: 5px;
}

.prodKlein img {
  width: 200px;
}




/* NAVBAR STYLING STARTS */
  .navbar {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    padding: 20px;
    background-color: black;
    color: #aaa;
    height: 65px;
  }
   
  

/* LOGO */
.logo {
  font-size: 32px;
  position: absolute;
}
.logo img{
  width: 65px;
}

.naam {
  font-size: 32px; 
  margin-left: 55px; 
  font-weight: 600;
  text-transform: uppercase;
}



/* NAVIGATION */
nav {
  margin-left: auto;
  margin-right: 0px;
  padding: 50px 0;
}
nav ul {
  list-style: none;
  text-align: center;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #aaa;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 10px;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}
nav ul li a:hover {
  color: #eee;
}



/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #aaa;
  height: 1px;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}

nav.fill ul li a {
  transition: all 2s;
}

nav.fill ul li a:after {
  text-align: left;
  content: '.';
  margin: 0;
  opacity: 0;
}
nav.fill ul li a:hover {
  color: #fff;
  z-index: 1;
}
nav.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}
  
