body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color:  #ff99bb;
    font-family: Arial, Helvetica, sans-serif;

}


header {
    height: 20%;
    background-color: #e6004c;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
}

nav {
    height: 10%;
    display:flex;
    background-color:  #ff1a66;
    display: flex;
    align-items: center;
    justify-content: center;
}
#nav a:link, a:visited, a:hover, a:active{
    color:white;
    text-decoration: none;
}

#nav div{ 
    margin-left: 10px;
    background-color:#990033 ;
    width: 200px;
    height: 30px;
    text-align:center;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
 
main {
    background-color:  #ff99bb;
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    height: 60%;
}

#links{
    width:40%;
}

#rechts {
    width: 60%;
    height: 100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    font-size:1.2em
}
#ik {
    width: 80%;
    border-radius:25%;
}
footer {
    height: 10%;
    display: flex;
    flex: row;
    justify-content: center;
    align-items: center;
    background-color:#990033;
    color:white;
}