/* CSS Document */
* {
  margin: 0px;
  padding: 0px;
  border: 0 none;
  outline: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@page {
  size: auto;
  margin: 0mm;
}
@media print {
  html,
  body {
    margin: 0mm;
    padding: 0mm;
    color: black !important;
    background-color: unset !important;
  }
}
html {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16pt;
  line-height: 1.75;
}

.logo {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  font-size: 40pt;
  font-size: clamp(40pt, 10vw, 80pt);
}
@media (min-width: 720px) {
  .logo {
    font-size: 80pt;
  }
}

html {
  color: black;
  background-color: whitesmoke;
}

.logo {
  color: white;
}

html,
body,
.page,
canvas {
  height: 100%;
}

.page {
  display: block;
  padding: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo {
  display: block;
  width: 100%;
  max-width: 720px;
}
.logo img,
.logo svg {
  display: block;
  width: 100%;
}

.bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.data {
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  padding: 12px;
  font-size: 12px;
  line-height: 1.25;
  color: black;
  background-color: #FFA;
}