body {
    margin: 0 auto;
    background-color: aliceblue;
    width: 100%;
}

/* Header */

header {
    background-color: rgb(13, 112, 250);
    display: flex;
    justify-content: space-between;
    padding: 1em 2em;
    height: 4em;
    z-index: 9999;
}

header img {
    width: 15%;
    margin: 0;
}

header .img {
    width: 15%;
}

header ul {
    display: flex;
    list-style: none;
    margin-right: 7em;
}

header ul li {
    margin-right: 1.5em;
}

header ul li a {
    color: aliceblue;
    text-decoration: none;
    font-size: 1.2em;
}

header ul li a.active {
    border-bottom: 2px solid white;
}

.dropbtn {
    background-color: transparent;
    color: white;
    border: none;
    text-decoration: none;
    transition: 0.2s;
  }

  .dropbtn a {
    transition: 0.2s;
  }

  .dropbtn a:hover {
    transition: 0.5s;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    color: white;   
    z-index: 1;
  }
  

  .dropdown-content a {
    color: white;
    padding: 4px 20px 4px 50px;
    background-color: #4166bb;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    /* background-color:#4166bb; */
    background-color: #5885ed;
    color: white;
}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: transparent;}

.banner .img {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 3em;

}

.banner img {
    width: 50%;
}

.banner .img {
    background-image: url(Netwerk.png);
    background-position: center;
    background-repeat: no-repeat;
    /* filter: blur(3px); */
    padding-bottom: 30em;
}

.banner .inner {
    text-align: center;
    padding-top: 5em;
}

.banner .inner h1 {
    font-size: 5em;
    border-bottom: 2px solid black;
}

.banner .inner h2 {
    color: rgb(194, 194, 194);
}

/* begrippen.html */

.txt {
    text-align: center;
    margin-top: 3em;
    font-size: 2em;
}

.content {
    width: 100%;
    margin-bottom: 5em;
    display: flex;
    justify-content: space-evenly;
}

.content.a {
    align-items: start;
}

.content h1 {
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.3em;
}

.content .begrip {
    width: 15%;
    border: 2px solid #5884ed;
    border-radius: 25px;
    margin-top: 5em;
    transition: 0.3s;
}

.begrip {
    background-color: #5884ed;
    /* border: #001138; */
    text-decoration: none;
    padding: 2.5em 2.5em 3em 2.5em;
}

.content .begrip:hover {
    background-color: rgba(26, 52, 117, 0.685);
    transition: 0.8s;
    transform: scale(1.05);
}

.content2 a {
    padding: 2em;
    text-align: center;
    text-decoration: none;
}

/* netwerk1.html */

.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.info {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 3em;
}

.info .begrip2 {
    border: 1px solid #5884ed;
    background-color: aliceblue;
    width: 33%;
    padding: 3em 6em;
    border-radius: 15px;
    transition: 0.3s;
    margin-right: 1.2em;
}

.info .begrip2:hover {
    color: #fff;
    background-color: #5884ed;
    transition: 0.8s;
    transform: scale(1.05);
    box-shadow: 0px 0px 15px 0px #595959;
}

.info .begrip2 h1 {
    text-align: center;
}

.info .begrip2 p {
    text-align: center;
    width: 100%;
    max-width: 100%;
    font-size: 1.1em;
}

.terug {
    margin-left: 3em;
    margin-top: 2em;
    padding: 10px 20px;
    border: 1px solid #5884ed;
    border-radius: 15px;
    width: 5%;
    text-align: center;
}

.terug a p {
    text-decoration: underline;
    font-size: 1.2em;
}

/* footer */

footer {
    margin-top: 3em;
    background-color: #b3b3b37a;
    text-align: center;
    width: calc(100% - 10em);
    padding: 2em 5em;
    display: flex;
    justify-content: space-around;
}

footer p {
    color: #a6a6a6;
}