main {
    background-color: lightgrey;
}

article {
    margin: 6px;
    padding: 6px;
    background-color: white;
    border-radius: 6px;
}

.hall-of-fame {
    display: grid;
    grid-template-columns: repeat(4, auto);
    place-items: center;
    background-color: white;
    gap: 6px;
}
.hall-of-fame > :nth-child(4n + 1) {
    justify-self: start;
    white-space: nowrap;
}
.no-border {
    border: none;    
}

.grid-header {
    text-align: center;
    font-weight: bold;
}