* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Courier New';
    overflow: hidden;
  }

  #backgroundVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .container {
    height: 100%;
    position: relative;
  }

  .center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .text {
    overflow-x: hidden;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    text-align: center;
    font-weight: bold;
  }

  .text.header {
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 16pt;
  }

  .text.links {
    margin-bottom: 40px;
    font-size: 12pt;
  }

  .text.email {
    font-size: 10pt;
  }

  .text.copyrightContainer {
    display:block;
    position:absolute;
    bottom:0;
    right:0;
    width:100%;
  }

  .text.copyright {
    font-size: 10pt;
  }

  a:link {
    color: black;
    background-color: transparent;
    text-decoration: none;
    text-align: center;
  }
  
  a:visited {
    color: black;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:hover {
    color: black;
    background-color: white;
    text-decoration: underline;
  }
  
  a:active {
    color: black;
    background-color: white;
    text-decoration: underline;
  }

  