*{
    padding: 0;
    margin: auto;
    max-width: 800px;
}
header{
    background-color: lightgrey;
    padding: 5px;
    margin-top: 20px;
    text-align: center;
}
h1{
    font-size: 30px;
    margin-bottom: 5px;
}
header nav ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
}
header nav ul li a {
    text-decoration: none;
    color: black;
}
header nav ul li a:hover {
    text-decoration: underline;
    color: black;
}
article{
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 2px solid #333;
}
img{
    width: 100%;
}
h2{
    font-size: 18px;
}
footer{
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
}