Код:
/* вертикальные ссылки */
div.backlinks {
display: flex;
flex-direction: row-reverse;
gap: 67px;
position: absolute;
top: -44px;
right: 140px;
}
div.backlinks div {
writing-mode: vertical-rl;
}
div.backlinks a {
font-family: 'Playfair Display', serif;
font-weight: 400;
font-size: 13px;
line-height: 1;
font-style: italic;
text-decoration: none;
letter-spacing: -1px;
display: inline-flex;
align-items: center;
gap: 4px;
transition: .3s ease;
}
div.backlinks a:hover {
color: rgb(var(--accent));
}
div.backlinks a span {
font-family: 'Playfair Display';
font-weight: 600;
font-size: 8px;
line-height: 1;
text-transform: lowercase;
background: rgb(var(--accent));
box-shadow: 0px 1px 11.7px 0px rgba(132, 57, 57, 1);
padding: 5px 3px 6px 3px;
font-variant-numeric: lining-nums;
font-style: normal;
border-radius: 50px;
display: block;
color: white;
letter-spacing: 0;
}
div.backlinks div:first-of-type a{
margin-top: 30px;
margin-right: 1px;
}
div.backlinks div:nth-of-type(2) a{
margin-top: -4px;
}
div.backlinks div:nth-of-type(3) a{
margin-top: 34px;
}
div.backlinks div:nth-of-type(4) a{
margin-right: -2px;
}







