  body {
            background: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            font-family: 'Arial', sans-serif;
        }

        .honeycomb-container 
        {
         
    margin-left: 50px;
    margin-top: 10px;
    margin-bottom: 100px;
    margin-right: 50px;

         }
        .honeycomb-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .honeycomb-row {
            display: flex;
            margin-bottom: -86px;
            margin-left: 149px;
        }

        .honeycomb {
             font-family: 'Montserrat', sans-serif; /* Современный шрифт */
    font-size: 2.2rem;                    /* Крупный размер */
    font-weight: 700;                     /* Жирное начертание */
    color: #ffffff;                       /* Белый цвет */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Тень для лучшей читаемости */
    text-transform: uppercase;            /* Все буквы заглавные */
    letter-spacing: 1px;                  /* Разрядка между буквами */
    text-align: center;                   /* Выравнивание по центру */
    transition: all 0.3s ease;            /* Плавные анимации */
    padding: 20px;                        /* Отступы внутри кнопки */
    line-height: 1.3;                     /* Межстрочный интервал */
            width: 300px;
            height: 346px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            position: relative;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 0px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Смещение четных рядов */
        .honeycomb-row.even {
            margin-left: -150px;
        }

        /* Цвета кнопок */
        .honeycomb:nth-child(6n+1) { background: linear-gradient(135deg, #FFD700, #FFA500); }
        .honeycomb:nth-child(6n+2) { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
        .honeycomb:nth-child(6n+3) { background: linear-gradient(135deg, #2196F3, #0D47A1); }
        .honeycomb:nth-child(6n+4) { background: linear-gradient(135deg, #9C27B0, #6A1B9A); }
        .honeycomb:nth-child(6n+5) { background: linear-gradient(135deg, #FF5722, #E64A19); }
        .honeycomb:nth-child(6n+6) { background: linear-gradient(135deg, #607D8B, #455A64); }

        /* Эффекты при наведении */
        .honeycomb:hover {
            transform: scale(1.1);
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            filter: brightness(1.1);
        }

        .honeycomb:active {
            transform: scale(0.98);
        }

        /* Текст кнопки */
        .honeycomb span {
            color: white;
            font-size: 2.2em;
            font-weight: bold;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            text-align: center;
            padding: 20px;
            transition: all 0.3s;
        }

        .honeycomb:hover span {
            transform: scale(1.1);
        }
