.chair {
    font-size: 100px;
    cursor: pointer;
    transition: transform 0.2s;
    user-select: none;
    transition: all 0.2s ease;
}

.chair:hover {
    transform: scale(1.2);
}