html, body {
  margin: 0;
  padding: 0;
}
canvas {
  display: block;
  position: fixed;
}

@font-face {
    font-family: 'Grotta';
    src: url('./assets/Grotta-Trial-Bold.otf') format('opentype');
  }

  #p5_loading {
    position: fixed;
    inset: 0;
    background-color: #131217;
    font-family: 'Grotta', sans-serif;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  #minimal-loader {
    font-size: 42px;
    opacity: 0.8;
    animation: pulse 1.2s ease-in-out infinite;
    text-align: center;
    letter-spacing: 0.05em;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 0.8;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.03);
    }
  }