*{
    margin: 0;
}
body{
    background-color: #D9D9D9;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 98px;
}

/* styling voor header */
header{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #597c73;
}
nav a{
    color:black;
    font-size: 2em;
    font-weight: bold;
    text-decoration: solid;
    margin-left: 0;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    background-color: #597C73;
    transition: all 200ms ease; 
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #597C73;
}
nav ul {
    display: flex;
    list-style: none;
    padding: 0;
}
nav a:hover{
    background-color: #384c47;
    color: white;
}
nav img{
    margin: 1em;
    display: flex;
    align-items: flex-end;
    width: 95px;
    height: 66px;
}
nav img:hover{
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* styling voor home */
.kop1{
    background-color: #C9C9C9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4.5em;
    margin-top: 2em;
}
.kop1 h1{
    font-size: 6em;
}
.kop1 p{
    font-size: 2em;
}
.kop1 p:nth-of-type(2){
    transition: all 200ms ease; 
    font-size: 3em;
    padding: 0.5em;
    margin-top: 2em;
    background-color: #D9D9D9;
    border-radius: 20px;
    border: solid 4px black
}
.kop1 p:nth-of-type(2):hover{
    background-color: #a3a3a3;
}
.container1{
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}
.container1 img{
    display: flex;
    justify-content: end;
    margin-top: 2em;
    width: 500px;
    height: 500px;
}
.kop2{
    background-color: #C9C9C9;
    padding: 1em;
    margin: 5em;
}
.kop2 h2{
    font-size: 3em;
    margin-bottom: 1em;
}
.kop2 iframe{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3em;
    display: block
}
.kop3{
    background-color: #C9C9C9;
    text-align: center;
    padding: 1em;
    margin: 5em;
}
.kop3 h3{
    text-align: left;
    font-size: 3em;
}
.kop3 img {
    width: 271px;
    height: 271px;
    margin-top: 1em;
    margin-left: 3em;
    margin-right: 3em;
}

/* styling voor afleveringen */
.afl{
    display: flex;
    background-color: #C9C9C9;
    padding: 1em;
    margin-left: 5em;
    margin-right: 5em;
    margin-bottom: 2em;
    transition: all 200ms ease;
}
.afl:hover{
    background-color: #597C73;
    color: white;
}
.afl div{
    display: flex;
    flex-direction: column;
}
.afl div p{
    text-align: left;
    font-size: 3em;
}
.afl div p:nth-of-type(2){
    text-align: left;
    font-size: 1.2em;
    margin-top: 1em;
}
.afl img{
    width: 300px;
    height: 300px;
    margin-right: 20px;
}
.afl1{
    margin-top: 8em;
}

/* styling voor over-ons */
.overons{
    background-color: #C9C9C9;
    padding: 1em;
    margin: 5em;
    margin-top: 8em;
}
.overons h1{
    font-size: 3em;
    margin-left: 1em;
    margin-top: 0.5em;
}
.overons p{
    font-size: 1.5em;
    margin: 2em;
}
.amber-sil{
    display: flex;
    background-color: #C9C9C9;
    padding: 1em;
    margin-left: 5em;
    margin-right: 5em;
    margin-bottom: 2em;
}
.amber-sil img{
    margin: 2em;
    width: 400px;
    height: 400px;
}
.amber-sil div{
    text-align: left;
}
.amber-sil div p{
    font-size: 3em;
    margin-top: 1em;
}
.amber-sil div p:nth-of-type(2){
    font-size: 1.5em;
}
.eliza{
    display: flex;
    background-color: #C9C9C9;
    padding: 1em;
    margin-left: 5em;
    margin-right: 5em;
    margin-bottom: 2em;
}
.eliza div{
    text-align: right;
}
.eliza img{
    margin: 2em;
    width: 400px;
    height: 400px;
}
.eliza div p{
    font-size: 3em;
    margin-top: 1em;
}
.eliza div p:nth-of-type(2){
    font-size: 1.5em;
}

/* styling voor footer */
footer{
    background-color: #597c73;
    color: white;
    font-size: 1.4em;
    padding: 1.5em;
    display: flex;
    justify-content: space-between;
}
footer img{
    margin-right: 3em;
    margin-bottom: 1.3em;
    display: flex;
    align-self: flex-end;
    width: 276px;
    height: 192px;
}
footer section{
    display: flex;
    flex-direction: column;
}
footer ul{
    list-style: none;
    margin: 0.5em;
}