body > p {
    margin-top: 80px;
    text-align: center;
    font-size: 30px;
    font-weight: 200;
    max-width: 1000px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

ul > li {
    border: 1px solid #e1e4e8;
    text-decoration: none;
    padding: 1rem .75rem;
    border-radius: 6px;
    list-style-type: none;
    height: 125px;
}

ul > li:hover {
    background-color: #ddd;
}

ul > li > p:nth-child(1) {
    text-transform: lowercase;
    letter-spacing: .05em;
    line-height: 1.2;
    color: #0366d6;
}

ul > li > p:not(:nth-child(1)) {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #666;
}