@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans',serif;
}

h2 {
    font-family: 'Open Sans',serif;
}

.top-menu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: space-between;
    position: static;
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2);
    min-height: 64px;
    z-index: 2;

}

.brand-logo {
    background-image: url('./logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 188px;
    height: 60px;
    margin: 0 8px 0;
}

.content-container {
    @media (max-width: 599px) {
        padding: 16px;
    }
    padding: 0 15rem;
    font-family: 'Open Sans',serif;
    color: #535353;
}

.heading-print-wrapper {
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 1rem;

    @media (max-width: 599px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.heading-print-wrapper h2 {
    flex: 1 1 auto;
    margin: 0;
}

.heading-print-wrapper h4 {
    margin: 0;
}

.print {
    color: #007198;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.print:hover {
    text-decoration: underline;
}

.print svg {
    width: 24px;
    height: 24px;
    fill: #007198;
}

.print:hover h4 {
    text-decoration: underline;
}

.mt-4 {
    margin-top: 1rem;
}

.px-4 {
    padding:0 1rem;
}

.box-border {
    box-sizing: border-box;
}

.m-4 {
    margin: 0 1rem 0;
}

.mr-8 {
    margin-right: 2rem;
}