


@font-face {
  font-family: 'OF-font';
  src: url('./OF-font-Regular.woff2') format('woff2'),
      url('./OF-font-Regular.woff') format('woff'),
      url('./OF-font-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(#efefef,#cccccc);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

#container {
  height: 100%;
}

#buttonsContainer {
  position: fixed;
  z-index: 50;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

#buttonsContainer button:not(:last-child) {
  margin-right: 20px;
}

button {
  /* box-sizing: border-box;  */
  padding: 4px 4px;
  border: 1px solid #ffffff;
  background-color: rgba(51, 51, 51, 0);
  font-size: 12px;
  line-height: 1;
  color: #FFFFFF;
  cursor: cell;
  transition: all 0.3s;
  font-family: 'OF-font';
  justify-content: center;
  /* display: flex; */
}

button img{
  display: block;
  width: 15px;
  
}
@media only screen and (max-width: 480px) {
button img {
    width: 40px;
  }
}


button:hover {
  border-color: #000000;
  background-color: #ffffff86;
  color: #000000;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}