<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media screen and (min-width:1024px){
    .agenda li a:hover{
        color: rgb(124, 189, 30);
        font-weight: bold;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .agenda li a:hover{
        color: rgb(124, 189, 30);
        font-weight: bold;
    }
}
@media screen and (max-width:767px){
}

.agenda nav{
    margin: 10px auto;
    padding: 15px;
    background-color: rgb(252, 249, 249);
}
.agenda li{
    width: fit-content;
    margin-left: 50px;
    color: gray;
}
.agenda li a{
    text-decoration: none;
    color: gray;
}
</pre></body></html>