:root {
    --agilent-blue: #0085D5;
    --footer-bg: #222222;
}

@font-face {
    font-family: 'robotoregular';
    src: url("roboto-regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: 'roboto_condensedlight';
    src: url("robotocondensed-light.woff2") format("woff2");
    font-display: swap;
    font-weight: normal;
    font-style: normal;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    margin: revert;
    padding: revert;
}

li {
    margin-top: 5px;
}

body {
    font-family: robotoregular, Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.widthLimiter {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background-color: var(--agilent-blue);
    padding-inline: 45px;
    padding-block: 14px;
}

.logo {
    height: 54px;
}

/* Content */
.content {
    padding-block: 20px;
    padding-inline: 45px;
    color: #303030;
}

h1,h2,h3,h4,h5,h6 {
    font-family: roboto_condensedlight, Arial, Helvetica, sans-serif !important;
    font-weight: 500;
    margin-bottom: 15px;
}

summary {
    cursor: pointer;
}

.version-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.version-summary {
    font-family: roboto_condensedlight, Arial, Helvetica, sans-serif !important;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1.5em;
    margin-top: 15px;
}

h1 {
    margin-top: 30px;
    font-size: 43px;
}

h2 {
    margin-top: 50px;
    font-size: 28px;
}

.blueBar {
    background-color: var(--agilent-blue);
    height: 16px;
}

/* Footer */
.footer {
    color: #999999;
    padding: 45px;
    /* Add your styles for the footer here */
    background-color: var(--footer-bg);
    font-size: 11px;
}

.footer ul {
    list-style-type: none;
    display: flex;
    justify-content: left;
}

.footer a {
    color: #999999;
    text-decoration: none;
    text-wrap: nowrap;
}

.legal {
    display: flex;
    flex-flow: wrap;
}

.legal ul {
    flex-grow: 1;
}