@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: "IBM Plex Serif", serif;
    background-color: rgb(71, 136, 136);
    margin: 0px;
}

#banner h1 {
    font-size: 40px;
    color: rgb(31, 66, 60);
    font-weight: 500;
    /* linear gradient h1 kop
    background: linear-gradient(to right, rgb(31, 66, 60) , rgb(62, 131, 121));
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100%; */
}

h2, h3 {
    color: rgb(62, 131, 121);
    font-family: "Quicksand", sans-serif;
}

h2 {
    margin-bottom: 10px;
    margin-top: 35px;
}

h3 {
    margin-bottom: 5px;
    margin-top: 5px;
}

ul, ol {
    color: rgb(94, 94, 94);
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    margin-top: 0px;
    margin-bottom: 35px;
}

ul ul {
    margin: 0px; /* geneste ul's moeten geen onder marge hebben */
}

p {
    margin-top: 0px;
    margin-bottom: 35px;
}

#content {
    display: block;
    width: 80%;
    margin: 40px auto;
    background-color: white;
    border-radius: 25px;
    border: 15px solid rgb(50, 109, 111);
    padding: 40px;
    padding-top: 0;
}

#navcontainer {
    height: 100px;
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100%;
    width: 90%;
    margin: auto;
}

#logotitle {
    flex-basis: 300px;
}

#logotitle a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

#logo {
    width: 50px;
    height: 50px;
}

#logotitle h2 {
    color: rgb(225, 227, 226);
    font-size: 40px;
    font-weight: 100;
    margin: 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
}

nav ul li {
    padding: 10px 10px 0px 10px;
    margin: 0 10px;
}

nav a {
    font-weight: bold;
    color: rgb(225, 227, 226);
    text-decoration: none;
    font-size: 18px;
}

/* nav dropdown opmaak */
.dropdown-content {
    display: none;
    position: absolute; /* Haalt het dropdown menu uit de flow zodat het over andere content heen kan liggen */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    float: none;
    background-color: #f9f9f9;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown-content a:first-child {
    margin-top: 10px;
    border-top: 4px solid coral;
    border-radius: 4px 4px 0 0;
}

.dropdown-content a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
  
nav ul li:hover .dropdown-content {
    display: block;
}

/* opmaak van tabellen */
table, th, td {
    border: none;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #04AA6D;
    color: white;
    font-weight: 300;
}

tr:nth-child(even) {
    background-color: rgb(225, 227, 226);
}

tr:hover {
    background-color: coral;
}

/* maximale grootte afbeelding */
.maxslide {
    max-width: 486px;
    margin: 20px;
}

.maxheight {
    max-height: 400px;
}

.slide {
    width: 486px;
    height: 329px;
}

/* opmaak index pagina */
#indexcontent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.blok {
    background-color: white;
    width: 280px;
    margin: 20px 0;
    border-radius: 25px;
    border: 10px solid rgb(50, 109, 111);
    padding: 15px;
}

.blok h2 {
    margin: 5px 0;
}

.blok a {
    text-decoration: none;
    color: rgb(94, 94, 94);
}

.blok a:hover {
    text-decoration: underline;
    color: rgb(62, 131, 121);
}

/* styling index page banner */
#indexbanner {
    width: 100%;
    height: 300px;
    display: block;
    background-color: #131417;
    background-image: url("images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Quicksand", sans-serif;
}

#indexbanner p {
    text-shadow: 0 0 7px rgba(255,255,255,.3), 0 0 3px rgba(255,255,255,.3);
    margin: 0;
}

.banneranimationcontainer {
    color: #e5e5e5;
    height: 100%;
    font-size: 2.26rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation {
    height:47px;
    overflow:hidden;
    margin-left: 1rem;
}

.animation > div > div {
    padding: 0rem 0.75rem;
    height: 2.8rem;
    margin-bottom: 2.8rem;
    display: inline-block;
}

.animation div:first-child {
    animation: text-animation 8s infinite alternate;
}

.first div {
    background-color:#20a7d8;
}

.second div {
    background-color:#CD921E;
}
 
.third div {
    background-color:#c10528;
}

.fourth div {
    background-color: #04AA6D;
}

@keyframes text-animation {
    0% {margin-top: 0;}
    15% {margin-top: 0;}
    25% {margin-top: -5.6rem;}
    45% {margin-top: -5.6rem;}
    55% {margin-top: -11.2rem;}
    75% {margin-top: -11.2rem;}
    85% {margin-top: -16.8rem;}
    100% {margin-top: -16.8rem;}
}

/*
KLeurenschema

Achtergrond groen
rgb(71, 136, 136);

Groen
rgb(50, 109, 111);

Donker groen
rgb(31, 66, 60);

Licht groen
rgb(62, 131, 121);

Grijs
rgb(225, 227, 226);

Donker grijs
rgb(94, 94, 94);

*/