.types {
    display: grid;
    grid-template-columns: repeat(6, max-content);
    gap: 5px 15px;
    justify-content: start;
}

.type-check {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.type-check input {
    display: none;
}

.type-check span {
    display: block;
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #aaa;
    background: white;
    border-radius: 4px;
    white-space: nowrap;
}

.type-check input:checked + span {
    background: #ffcc66;
    border-color: #d99d22;
    font-weight: bold;
}
.personality-item {
    display: flex;
    align-items: center;
    width: 180px;
}

.personality-item span {
    width: 80px;
}

.personality-item strong {
    width: 60px;
    text-align: right;
}

body {
    margin: 0;
    padding: 20px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

