Овен (21 марта – 20 апреля)
/* Обёртка - центрирует кнопку */
.gn-button {
display: flex;
justify-content: center;
margin: 1rem 0;
}
/* Сама кнопка */
.gn-button a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 4px 17px;
font-size: 14px;
text-decoration: none !important;
border-radius: 50px;
position: relative;
background: #fff;
color: #3a5dab;
border: none;
isolation: isolate;
}
/* Градиентный бордер */
.gn-button a::before {
content: "";
position: absolute;
inset: 0;
border-radius: 50px;
padding: 2px;
background: linear-gradient(90deg, #3a5dab, #e91e63);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
z-index: 0;
}
.gn-button a > * {
position: relative;
z-index: 1;
}









