@font-face {
    /* This Font Software is licensed under the SIL Open Font License, Version 1.1 - https://openfontlicense.org */
    font-family: "Source Code Pro";
    src: 
        url(./assets/fonts/source-code-pro/SourceCodePro-VariableFont_wght.ttf);
}

:root {
    --narwhals-green: #21404c;
    --narwhals-blue: #257dc9;
}

html, body {
    margin: 0;
    font-family: "Source Code Pro";
    background-color: #fff;
}

.header img {
    height: 35px;
    padding: 5px;
}

.banner {
    width: 100%;            
    height: 128px;
    overflow: hidden;
    position: relative;
}

.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

.banner img {
    position: absolute;
    margin: 15px;
    width: 200px;
}

.content{
    padding: 15px;
    font-size: 18pt;
    max-width: 800px;
    font-weight: 500;
    color: var(--narwhals-green);
}

.footer{
    border-top: 1px solid #4A4A4A;
    font-size: 8pt;
    color: #4A4A4A;
    text-align: center;
}