body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.family-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.letter {
    font-weight: bold;
    text-decoration: underline;
    display: block;
    text-align: center;
    margin-bottom: 1em;
}
.name-list {
    flex: 1 1 calc(50% - 25px);
    box-sizing: border-box;
}
.name-list p {
    margin: 0 0 1em 0;
}

.cards-container { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; 
}

.card {
    width: 150px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: border 0.3s ease;
    background-color: #fff;
}

.card img {
    width: 100%;
    height: auto;
}

.card .caption {
    font-size: 14px;
    font-family: 'Georgia', serif;
    text-align: center;
    padding: 10px;
    color: #333;
    width: 100%;
}

.card:hover {
    border: 2px solid #cd3333;
}