@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,672;1,9..40,672&display=swap');

body {
  margin: 0;
  overflow: hidden;
  background-color: #000;
  height: 100vh;
  width: 100vw;
}

.writing {
  font-family: 'Orbitron', sans-serif;
  font-size: 15vh; /* desktop */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}

.back {
  color: white;
  z-index: -1;
}

.front {
  color: transparent;
  -webkit-text-stroke: 0.5vh white;
  z-index: 2;
  pointer-events: none;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: block;
}

.unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Responsive font for screens smaller than 768px */
@media screen and (max-width: 767px) {
  .writing {
    font-size: 5vh; /* manji font */
  }

  .front {
    -webkit-text-stroke: 0.3vh white; 
  } 
}


@media screen and (max-width: 767px) {
  canvas {
    width: 100vw;
    height: 80vh; /* manje visine za mobilne */
  }
}
