
@font-face {
  font-family: 'Ortica';
  src: url('../fonts/Ortica-Light.otf');
  font-style: normal;
}

html {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-size: 18vw;
  text-align: center;
  line-height: 80%;
  position: relative;
  z-index: 10000;
  height: 100%;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

body {
    width: 100vw;
    overflow: hidden;
}

#reload {
  width: 50%;
  transition: width 1s, height 1s, transform 1s;
}

#reload:hover {
  width: 100%;
  transform: rotate(720deg);
}

img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
