.header {
    background-color: rgb(89, 89, 101);
    background-image: url("/img/header.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    height: calc(10rem - 2rem);
    padding: 1rem;
    position: relative;
    z-index: 1;
}

@media print {
    .header {
        background-color: rgb(255, 255, 255);
        background-image: none;
        border-color: rgb(0, 0, 0);
        border-style: solid;
        border-width: 0.125rem;
    }
}

.header>.block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: calc(33% - 0.375rem);
    width: 100%;
}