@font-face {
    font-family: CrimsonText;
    src: url(CrimsonText-Regular.ttf);
}
  
h2 {
  font-family: CrimsonText;
  font-weight: normal;
  color: #EEE;
  margin: 10px 0px;
}
.line {
  border-top: 1px solid #FFF;
  display: block;
  height: 1px;
  margin: 2px 0px;
  width: 300px;
}
#plh {
  align-items: center;
  display: flex;
  flex-direction: column;
}

body {
  align-items: center;
  display: flex;
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  justify-content: center;
  background: #222;
}
body,
html {
  margin: 0;
  overflow: hidden;
  padding: 0;
}
canvas { 
  display: inline-block; /* Instead of display: block; */
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  touch-action: none;
  vertical-align: middle;

  height: auto !important;
  width: auto !important;
}