@font-face {
    font-family: "fontCone";
    src: url(Cone.otf);
}

#cnvdiv {
  position: fixed;
  left: 50%;
  top: 2vh;
}

#pp {
    font-size: 12pt;
    position: fixed;
    bottom: 2vh;
    left: 50%;
}

canvas {
    margin-left: -50%;
    outline: rgb(200, 200, 200) .9vh solid;
    border-radius: 5px;
    transition: outline .3s;
    transition-timing-function: cubic-bezier();
}

html, body {
    font-size: 16px;
    overscroll-behavior: none;
    user-select: none;
    -webkit-user-select: none;
}

a:link {
    color: rgb(0, 255, 255);
    background-color: transparent;
    text-decoration: underline;
  }
  
  a:visited {
    color: rgb(0, 255, 255);
    background-color: transparent;
    text-decoration: underline;
  }
  
  a:hover {
    color: rgb(0, 255, 255);
    background-color: transparent;
    text-decoration: underline;
  }
  
  a:active {
    color: rgb(0, 255, 255);
    background-color: transparent;
    text-decoration: underline;
  }