/*
 * FXHASH project - Fibartnacci
 * Copyright (C) 2022 Anna https://twitter.com/AnnaS_BK
 * Licensed GPLv2
 */
  html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #4A5969;
}

canvas,
body {
  touch-action: none;
  user-select: none;
} 

 #fullscreen {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin:0;
  box-sizing: border-box;
}

canvas {
  margin: 0 auto;
  display: block;
  height: auto !important;
  width: auto !important;
  max-height: 100%;
  max-width: 100%;
  box-shadow: 0px 0px 20px 20px rgba(253, 253, 253, 0.1);
}  
