.linktree {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wp-block-outermost-icon-block {
    width: auto;
}

.linktree-element {
    max-width: 500px;
    width: 75%;
    margin: 10px 50px;
    /*border: 1px solid var(--wp--preset--color--custom-color-1);*/
    border-radius: 32px;
    background-color: var(--wp--preset--color--custom-color-2);
}

.linktree-element a {
    text-decoration: none;
}

.linktree-element svg {
    transition: transform 0.3s ease;
}

.linktree-element:hover svg {
    transform: scale(1.05);
}

.linktree-element:hover svg * {
    fill: var(--wp--preset--color--custom-color-5)!important;
}

.linktree-element h3 {
    transition: transform 0.3s ease;
}

.linktree-element:hover h3 {
    transform: scale(1.05);
    color: var(--wp--preset--color--custom-color-5)!important;
}

.linktree-element .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);

}

.linktree-element h3 {
    width: 100%;
    align-items: center;
    text-align: center;
    vertical-align: center;
    margin-top: 10px;
    margin-bottom: 10px!important;
    padding: 0;
    font-size: 20px;
}

