.copyright {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    background: white;
    padding: 3px;
    width: 1.7em;
    height: 1.7em;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 100%;
    cursor: grab;
    z-index: 19;
}
.copyright > span {
    font-weight: bold;
    color: red;
    height: min-content;
    align-self: center;
}
.copyright {
    &:hover .info, &:active .info, &:focus .info, &:focus-within .info, &:focus-visible .info,
    .info:focus, .info:active, .info:focus-within, .info:focus-visible {
        opacity: 1;
    }
}
.copyright .info {
    opacity: 0;
    transition: opacity 500ms ease;
    position: absolute;
    right: 2.2rem;
    top: 1.5em;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 0;
    z-index: 999999;
}
.copyright .info p {
    color: white;
    background: #000;
    font-size: 0.8em;
    padding: 3px 15px 6px;
    font-family: Manrope-Light, Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: inline-block;
    opacity: 0.9;
    max-width: 300px;
    width: max-content;
    cursor: pointer;
}

[aria-hidden="true"] {
    .copyright {
        display: none;
    }
}