* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e8e8e8;
    font-family: comic sans ms;
    user-select: none;
}

#container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    width: 200px;
    height: 250px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card:hover {
    cursor: pointer;
}

.card img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 50% / 40%;
}

.card-info {
    text-align: center;
}

.card-info h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 4px;
}

.card-info span {
    font-size: 0.85rem;
    color: #666;
}