.element {
position: absolute;
top: 0;
right: 0; /* Align the overlay to the right */
width: 100%; /* Set a fixed width for the overlay or adjust as needed */
height: 100%;
background-color: white;
opacity: 0;
visibility: hidden;
display: flex;
flex-direction: row; /* Display links in a row */
justify-content: flex-end; /* Align links to the right */
align-items: center;
a {
font-size: 0.6rem;
margin: 5px;
text-decoration: none;
color: #333;
}
}