body, html {
    margin: 0px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

body {
    /*background-color: rgb(14, 1, 72);*/
    background-color: rgb(8, 1, 40);
}

snow-container {
    width: 100%;
    height: 100%;
}

.snowflake {
    position: absolute;
    width: fit-content;
    height: fit-content;

    animation: spin 5s linear -2s infinite alternate;
}

@keyframes spin {
    0% {transform: rotateY(0deg) rotateX(30deg) rotateZ(15deg);}
    100% {transform: rotateY(360deg) rotateX(390deg) rotateZ(375deg);}
    
}