@font-face {
  font-family: 'Roboto';
  src: url('/assets/roboto.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
body { font-family: 'Roboto', sans-serif; letter-spacing: 0.2; font-weight: 400;  }





#loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;               
  pointer-events: none;     
  transition: opacity 0.4s ease;  
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900; 
}

#loader.active {
  opacity: 1;               
  pointer-events: all;      
}
