@import url('https://fonts.googleapis.com/css2?family=Festive&family=Lobster&family=Pacifico&family=Roboto:wght@300&family=Zen+Kurenaido&display=swap');
*{
    margin:0;
    padding:0;
}
body{
    font-family: "Roboto";
    background-color:whitesmoke;
    color:black;
    background: rgb(242,242,242);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgb(221, 221, 221) 100%);
}
.container{
    max-width: 100%;
}
header{
    background-color: rgb(155, 155, 155);
    display:flex;
    justify-content: center;
}
header svg{
    width:100px;
    height: 100px;
}
h1{
    display:none;
}
.quote{
    position:relative;
    height:150px;
}
.quote p{
    top:50%;
    font-size: 28px;
    text-align: center;
    position: absolute;
    animation: 1s ease-out 0s 1 slideInFromLeft;
    transform: translateX(-50%);
    left: 50%;
}
article{
    padding:20px;
}
article h2{
    padding-top:20px;
    padding-bottom: 10px;
}
.banner{
    background-image: url("../images/pexels-thomas-malecki-auto.jpg");
    height:500px;
    background-position: center left;
    background-size: cover;
    margin:30px 0;
}
nav{
    display:flex;
    flex-direction: column;
    background-color: rgb(192, 192, 192);
    padding:20px;
}
nav h2{
    padding-bottom: 10px;
}
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;
    padding:20px 5px;
    margin:10px;
    height: 25px;;
    text-decoration: none;
    background-color: white;
    color:black;
    text-transform: capitalize;
    font-weight: bold;
}
nav ul li a:hover{
    color:rgb(215, 233, 177);
}
.terug{
    text-align: center;
    padding:10px;
}
.terug a{
    color:black;
    text-decoration: none;
}
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;
}
@media only screen and (min-width:1200px){
    .container{
        max-width: 1400px;
        margin:auto;
    }
    .banner{
        background-size: cover;
        transition: background-position 1000ms;
    }
    .banner:hover{
        background-position: bottom right;
    }
    .nav-wrapper{
        display:flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    nav{
        flex-grow: 1;
        text-align:center;
    }
    nav ul li{
        transition: font-size 1000ms;
    }
    nav ul li:hover {
        font-size: 25px;
    }
    nav ul li a{
        background-color: white;
    }
    nav ul li a:hover{
        animation: fadeBackground 1s 1 alternate ease-out forwards;
    }
    .header-wrapper{
        display:flex;
        align-items: center;
        justify-content: center;
    }
    header svg{
        flex-grow: 1;
        margin-top:25px;
    }
    header h1{
        margin-left:40px;
        display:block;
        flex-grow: 1;
    }
    article{
        display:flex;
    }
    .col{
        flex-grow: 1;
        padding:20px;
    }   
}
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes fadeBackground{
    0% {
        background-color: white;
    }
    100% {
        background-color: rgba(0, 0, 0, 0.1);
    }
}