How to change the size and styling of H1 into H2 size and styling, using Noami without losing the H1 tag?
tia
h1 {
overflow: hidden;
}
h1::after, h1::before {
position: absolute;
display: block;
content: '';
height: 3px;
bottom: 0;
margin-top: 5px;
}
h1::before {
left: 0;
width: 60px;
background-color: rgba(100,100,100,0.1);
background-color: var(--primary);
}
h1::after {
left: 63px;
width: 2000px;
background-color: rgba(100,100,100,0.1);
}