.hyperlink{
    font-family: Belleza;
    font-size: 1.2rem;
    font-weight: bold;
    color: #465A18;
    filter: brightness(1.5);
    cursor: pointer;
    transition: all 0.3s ease;
    /* display: inline-block; */
    position: relative;
}
.hyperlink:hover{
    filter: brightness(2);
}
/* .hyperlink:active::after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0.25rem;
    border-style: solid;
    border-color: var(--gray9);
    border-width: 0.125rem;
    display: inline;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} */