*
{
    margin: 0;
    padding: 0;
}

html,
body
{
    height: 100vh;
    font-family: 'Poppins';
    background-color: rgb(1, 1, 1);
    /* background-color: rgb(40, 50, 56); */
}

.container{
    height: 100vh;
    display: grid;
    place-items: center;
}

h1{
    font-size: 8rem;
    text-transform: uppercase;
    color: azure;
}

#scene-container {
    /* tell our scene container to take up the full page */
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
  }

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