*
{
    margin: 0;
    padding: 0;
}

html,
body
{
    height: 100vh;
    font-family: 'Poppins';
}

.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.wrap
{
    position: absolute;
    z-index: 100;
    color: white;
    display: flex;
    gap: 3rem;
    bottom: 5%;
    right: 5%;
}
.wrap >* {
    padding: 0.3rem;
}
.wrap >*:hover{
    cursor: pointer;
} 
/* loader */
#loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050404;
    z-index: 9999;
  }
  
  .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
  }
  
  @keyframes spinner {
    to {transform: rotate(360deg);}
  }
  

/*# sourceMappingURL=main.css.map*/