.iksweb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 30px;
    color: #000000;
    background: #ffff0;
    border-radius: 60px;
    border: 2px solid #354251;
    width: 200px;
    text-align: center; /* Выравнивание текста по центру */
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

.iksweb:hover {
    background-color: #ffb600;
    color: #ffffff;
    border: 2px solid #ffb600;
    transition: all 0.2s ease;
}


/* Стили для footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #000000; /* Черный цвет текста */
    padding: 10px 0;
    text-align: center;
    font-size: 15px; /* Размер текста */
}




