.circle {
    position: relative;
    width: 300px; /* Ширина круга */
    height: 300px; /* Высота круга */
    border-radius: 50%;
    margin: auto;
}

.circle .link {
    position: absolute;
    width: 80px; /* Ширина ссылки */
    height: 30px; /* Высота ссылки */
    text-align: center;
    line-height: 30px; /* Вертикальное выравнивание текста */
    background-color: #007bff; /* Цвет фона */
    color: white; /* Цвет текста */
    border-radius: 15px; /* Скругление углов */
    text-decoration: none; /* Убираем подчеркивание */
}