body {
    background-color: whitesmoke;
    color: slategray;
    margin: 0;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

header {
    padding: 1rem;
    border-bottom: .4rem gainsboro solid;
}

h1 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 2.4rem;
    color: darkslategray;
    font-weight: 800;
}

h2 {
    margin-top: .5rem;
}

ul {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 4rem auto;
    padding: 0;
    justify-content: center;
}

li {
    list-style: none;
    border-bottom: .2rem gainsboro solid;
    width: 16rem;
    margin: 2rem;
    padding: .5rem;
}

img {
    width: 80%;
    height: 180px;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 0 .2rem slategray;
}

a {
    text-decoration: none;
    color: slategray;
    font-size: 1rem;
}