
#go-to-content{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;

    background: white;
    padding: 5px;

    border: 2px dashed currentColor;
    color: inherit;

    &::after{
        content: " ↴";
    }
}

.header_top{
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-primary);
}

/*
use different logo when printing, and force remove the header's background color
(even if the user has the option enabled, it will be blank)
 */

.print-logo{
    display: none;
}

@media print{
    .header_top{
        background-color: transparent;
    }

    .normal-logo{
        display: none;
    }

    .print-logo{
        display: block;
    }
}
