@import url('https://fonts.googleapis.com/css2?family=Festive&family=Lobster&family=Pacifico&family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300&family=Zen+Kurenaido&display=swap');
*{
    margin:0;
    padding:0;
}
body{
    font-family: Roboto;
    background-color:whitesmoke;
    color:black;
    background-color: blanchedalmond;
}
nav ul{
    display:flex;
    flex-direction: column;
    justify-content: center;
}
nav ul li{
    list-style-type: none;
    flex-grow: 1;
    text-align:center;
}
nav ul li a{
    display:block;
    text-decoration: none;
    background-color: #0c316e;
    color:white;
    font-weight: bold;
    padding:15px 5px;
    margin:10px;
}
nav ul li a:hover{
    color: red;
    text-decoration: none;
}
.container{
    border: 1px black solid;
    border-radius: 15px;
    box-shadow: 0 0 5px black;
    background-color: whitesmoke;
}
article img{
    border-radius: 15px;
    height:200px;
    width:100%;
    box-shadow: 0px 0px 15px 1px #000000;
    margin: 20px 0px;
}
.summarylist{
    margin-left: 30px;
}
table{
    width:100%;
}
table td, table th{
padding: 5px 5px;
}
.terug{
    text-align: center;
    margin:30px;
}
.terug a{
    color: darkslateblue;
    text-decoration: none;

}
.terug a:hover{
    color:red;
}
footer{
    background-color: rgb(80, 80, 80);
}
footer ul{
    display:flex;
    justify-content: center;
}
footer li{
    list-style-type: none;
    flex-grow: 1;
    text-align:center;
}
footer li:first-child{
    border-right: rgb(0, 0, 0) 1px solid;
}
footer li:last-child{
    border-left: rgb(0, 0, 0) 1px solid;
}
footer ul li a{
    display:block;
    padding:20px;
    color:white;
    text-decoration: none;
}
footer ul li a:hover{
    color: red;
    text-decoration: none;
}
