@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
    font-family: 'Open Sans';
}

h1, h2{
    font-family: "Merriweather";
}
h2:has(~ ul){
    color:red;
}
h2:has(~ ol){
    color:yellow;
}
h2:has(~ ol>li>ul){
    color:green;
}

ol>li>ul{
    text-decoration: underline;
}

.vet{
    font-weight: bold;
}
.vet>ul{
    font-weight: normal;
}