/* Alles op 0 zetten en het lettertype naar Arial */
* {
    margin: 0;
    padding: 0;
    font-family: arial; 
}

/* ALLE PAGINA'S: De navigatiebalk */
 li #logo {
    height: 58.5px;
    width: 63px;
    margin: 0px;
    padding: 0px;
    float: left;
    border: 0px;
}

ul.navigatiebalk {
    list-style-type: none;
    overflow: hidden;
    border: solid 2px black;
    background-color: white;
    position: fixed;
    top: 0px;
    z-index: 1;
    width: 70%;
    border-radius: 10px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.knop {
    background-color: rgb(255, 255, 255);
    float:left;
    padding: 20px 20px 21px 20px;
    font-weight: bold;
    margin: 0px;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
  }
  
.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: rgb(73, 194, 256);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.link2 {
    color: black;
    text-decoration: none;
}

#Home, #partijprogramma, #leden, #contact, #vacatures {
    background-color: rgb(194, 194, 194);
}

li a {
    text-decoration: white;
    color: rgb(0, 0, 0);
    background-color: white;
}

ul.navigatiebalk li.contact {
    float: right;
}

/* ALLE PAGINA'S: boxen in het midden */

.boxmidden {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ALLE PAGINA'S: Balk onderaan de pagina met hyperlinks */

.balkonderaan {
    background-color: rgb(170, 170, 170);
    width: 100%;
    padding: 30px;
}

th {
   padding: 3px 
}

.onderwerp {
    font-size: x-large;
    color: black;
    text-decoration: none;
}

:hover.onderwerp {
    color: rgb(255, 255, 255);
}

.link {
    color: black;
    text-decoration: none;
}

:hover.link {
    color: rgb(255, 255, 255);
}

/* HOME PAGINA: Tekst in het plaatje + het plaatje */

.hoofdtekst {
    position: relative;
    text-align: center;
    color:rgb(255, 255, 255);
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;
}

.grootste {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bolder;
    font-size: large;
}

#werenfridus {
    font-size: 30px;
    font-weight: bolder
}

img.hoofdtekst-image {
    width: 100%;
    height: 100%;
    border: solid 1px black;
    z-index: 0;
}

#achtergrond {
    background-color: rgb(73, 194, 256)
}

/*  HOME PAGINA: boxen info andere pagina's */

.box {
    float: left;
    background-color: rgb(248, 248, 248);
    border: solid;
    width: 600px;
    padding: 20px;
    margin: 30px;
    border-radius: 25px;
}

.tussenkopje {
    font-size: larger;
    font-weight: bold;
}

.bovenste2box {
    background-color: rgb(73, 194, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.onderste2box {
    background-color: rgb(1, 52, 77);
    padding: 20px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HOME PAGINA: hover over de hier */

:hover.hier {
    color: rgb(73, 194, 255);
}

/* PARTIJPROGRAMMA + VACATURES + CONTACT + LEDEN: Achtergrond van de hele pagina */

body.paginabackground {
    background-image: linear-gradient(rgb(73, 194, 256), rgb(1, 52, 77));
}

/* PARTIJPROGAMMA: Lijst bovenaan de website */

#lijstpartijprogramma {
    margin-top: 100px;
    margin-bottom: 20px;
    font-size: large;
    width: 980px;
    border: solid;
    padding: 30px;
    border-radius: 25px;
    background-color:  rgb(248, 248, 248);
}

.lijstpartijprogramma2 {
    color: blue;
    text-decoration: underline;
    background-color: rgb(248, 248, 248);
}

:hover.lijstpartijprogramma2 {
    color:rgb(73, 194, 255);
}

/* PARTIJPROGRAMMA: boxen met alle uitleg */

.boxpartijprogramma {
    margin: 20px;
    width: 1000px;
    height: 200px;
    border: solid;
    border-radius: 25px;
    padding: 20px;
    background-color: rgb(248, 248, 248);
}

.tussenkopjes {
    font-size: larger;
    font-weight: bold;
}

/* PARTIJPROGRAMMA: Schoolverdeling box de padding aan de onderkant was niet goed */

.schoolverdelingbox {
    padding-bottom: 50px;
    margin-bottom: 90px;
}

/* PARTIJPROGRAMMA: Plaatjes van de tekst */

.imghuiswerk{
    width: 415px;
    float: left;
    border-radius: 25px;
    padding: 7px 10px 7px 7px;
}

.imgnederlands {
    width: 300px;
    height:200px;
    float: right;
    border-radius: 25px;
    padding: 2px;
}

.imgmaximaletijd {
    width: 200px;
    height: 200px;
    float: left;
    border-radius: 25px;
    padding-right: 10px;
}

.imghuizennood {
    width: 200px;
    float: right;
    border-radius: 25px;
    padding-left: 10px;
}

.imgschoolverdeling {
    width: 210px;
    float: left;
    border-radius: 25px;
    padding-right: 10px;;
}

/* VACATURES: De tabel */

#tabelvacatures {
    margin-top: 100px;
    margin-bottom: 100px;
    border: solid black 5px;
    border-collapse: collapse;
    background-color:rgb(248, 248, 248);
    width: 90%;
}

.tabelvacatures {
    border: solid 5px;
    height: 100px;
    width: 400px;
}

.tabelvacaturesonder {
    height: 100px;
}

.tabelbovensterij {
    font-size: x-large;
    text-decoration: underline;
    background-color:rgb(221, 221, 221);
}

/* CONTACT: box inleiding */

#ctinleiding {
    margin: 100px;
    border: solid black;
    border-radius: 25px;
    padding: 10px;
    background-color: rgb(248, 248, 248);
    width: 60em;
    font-weight: bold;
    font-size: large;
    text-align: center;
}

/* CONTACT: Tabel */

.letters {
    font-size: x-large;
    float: left;
    margin-top: 50px;
}

#cttabel {
    border: solid black;
    border-radius: 25px;
    background-color: rgb(248, 248, 248);
    width: 60em;
    margin-bottom: 200px;
}

/* CONTACT: knoppen voor de linkjes */

.ctknop {
    text-decoration: none;
    border: solid blue;
    color: blue;
    background-color: rgb(221, 221, 221);
    border-radius: 25px;
    padding: 10px;
}

:hover.ctknop {
    color: rgb(73, 194, 256);
    text-decoration: none;
    border: solid rgb(73, 194, 256);
    border-radius: 25px;
    padding: 10px;
}

/* CONTACT: logo's in de tabel */

#imgfacebook {
    width: 100px;
    padding: 15px;
}

#imggmail {
    width: 100px;
    padding: 15px;
}

#imgxtwitter {
    width: 200px;
    border-radius: 25px;
    padding: 15px;
}

#imgfax {
    width: 100px;
    padding: 15px;
}

#imginsta {
    width: 100px;
    padding: 15px;
}

#imgsnap {
    width: 100px;
    border-radius: 25px;
    padding: 15px;
}

#imgtelefoon {
    width: 100px;
    padding: 15px;
}

#imgtiktok {
    width: 100px;
    padding: 15px;
}

#imglinkedin {
    width: 100px;
    padding: 15px;
}

#imgyoutube {
    width: 100px;
    padding: 15px;
}

/* LEDEN: box */

.ledenbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

#ledentext {
    text-align: center;
}

.naam {
    font-size: x-large;
    font-weight: bold;
}

.opzoek {
    margin-bottom: 1px;
}

/* LEDEN: Box met informatie over de pagina */

.boxleden {
    float: left;
    background-color: rgb(248, 248, 248);
    border: solid;
    width: 600px;
    padding: 20px;
    margin: 30px;
    margin-bottom: 70px;
    border-radius: 25px;
}

.onzeleden1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.onzeleden2 {
    font-size: 75px;
    font-weight: bolder;
    border: solid black;
    border-radius: 25px;
    background-color:rgb(248, 248, 248);
    padding: 10px;
    text-align: center;
}

/* LEDEN: Fotos van de leden */

.imgbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgmats {
    width: 300px;
    height: auto;
    margin: 10px;
}

.imgthomas {
    width: 440px;
    height: auto;
    margin: 10px;
}

/* LEDEN: Doneer box */

.onzeleden3 {
    font-size: 55px;
    font-weight: bolder;
    border: solid black;
    border-radius: 25px;
    background-color:rgb(248, 248, 248);
    padding: 20px;
    text-align: center;
    margin-bottom: 50px;
}