@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:wght@100;400;700&display=swap');

html {
    font-size: 100%;
}

body {
    color: black;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

#headerblock {
    position: relative;
    width: 100% !important;
    background-color: #BF1920;
    text-align: center;
    height: 20vh;
}

#headerblock::after {
    content:'';
    position: absolute;
    top: 99%;
    left: 50%;
    margin-left: -40px;
    width: 0;
    height: 0;
    border-top: solid 40px #BF1920;
    border-left: solid 40px transparent;
    border-right: solid 40px transparent;
}

#footerblock {
    position: relative;
    width: 100%;
    background-color: #9c9c9c;
    text-align: center;
    height: 150px !important;
    margin-top: 50px;
}

#footerblock::after {
    content:'';
    position: absolute;
    top: -1px;
    left: 50%;
    margin-left: -40px;
    width: 0;
    height: 0;
    border-top: solid 40px white;
    border-left: solid 40px transparent;
    border-right: solid 40px transparent;
}

#titleblock {
    color: white;
    position: absolute;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    /*padding: 20px 0px 20px 0px;*/
    margin-left: 3vw;
    top: 50%;
    transform: translate(0, -50%);
    text-align: left;
}

#titleblock h2 {
    font-family: 'Roboto', sans-serif;
    font-size: min(max(3vw, 1.2em), 30px);
    font-weight: 100;
    padding: 1vh 0vh 0vh 0vh;
}

#titleblock h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: min(max(5vw, 2em), 45px);
    font-weight: 700;
    padding: 0vh 0vh 1vh 0vh;
}

#logoblock {
    position: relative;
    float: right;
    width: 150px;
    height: 35px;
    background-image: url(Canon_wordmark.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: white;
    padding: 20px;
    background-origin: content-box, padding-box;
    top: 50%;
    transform: translate(0, -50%);
    margin-right: 50px;
}

@media screen and (max-width: 600px) {
    #logoblock {
        display: none;
    }
}

#bodyblock {
    position: relative;
    padding: 60px 10px 0px 10px;
    margin: auto;
}

@media screen and (min-width: 800px) {
    #bodyblock {
        width: 800px;
    }
}

h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    padding-bottom: 10px;
}

h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    padding-bottom: 10px;
    padding-top: 30px;
}

#bodyblock p {
    line-height: 150%;
}

.videoblock {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin: 20px 0px 20px 0px;
}

.videoblock iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

table {
    table-layout: fixed;
    text-align: left;
    border-collapse: collapse;
    /*margin: 0px 50px 0px 50px;
    width: calc(100% - 100px);*/
    width: 100%;
    margin-top: 2vh;
    background-color: rgb(250,250,250);
}

th {
    font-weight: 700;
    background: rgb(240,240,240);
    border-top: 1px solid #ddd;
}

th, td {
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.textright {
    text-align: right;
 }

 .small-link {
    font-size: 80%;
    margin-top: 30px;
    font-weight: 100;
 }

a:link {
    color: inherit;
    text-decoration: none;
    text-decoration: underline;
}
  
a:visited {
    color: inherit;
    text-decoration: none;
}
  
a:hover {
    color: inherit;
    text-decoration: underline;
    background-color: lightgray;
}
  
a:active {
    color: inherit;
    text-decoration: underline;
}