body {
    margin: 0;
    padding: 0;
    font-family: verdana, sans-serif;
}


header {
    background-color: #E45522; /* Oranje achtergrond */
    padding: 10px 0;
}

nav {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, auto);
    align-items: center;
    justify-content: center;
    gap: 30px;
}

nav li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: bold;
}

#Roy\ Lichtenstein {
    background-color: #D81B60; /* Roze achtergrond */
    border-radius: 15px;
}
    
nav img {
    width: 170px;
}

h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ff0000;
}
h1 img {
    height: 150%;
}
main {
    padding: 20px;
}
main img {
    width: 29.5%;
    height: auto;
}

section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
img {
    width: 100%;
}
article img :nth-child(2) {
    width: 100%;
    height: auto;
}
footer {
    background: #e65100;
    padding: 10px;
    text-align: center;
    color: black;
}
footer a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}
