.snowflake {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('./snowflake.png') no-repeat center;
    background-size: cover;
    pointer-events: none
}
.snowflakeWindows {
    background: url('./windows.png') no-repeat center;
    background-size: cover;
}
.snowflakeApple {
    background: url('./apple.png') no-repeat center;
    background-size: cover;
}
.snowflakePointed {
    background: url('./snowflake-pointed.png') no-repeat center;
    background-size: cover;
}
#snow {
    z-index: 1;
    max-width: 100%;
    width: 100%;
    position: fixed;
}
/** Mobile Portrait **/
@media all and (min-width: 600px) and (orientation: portrait) 
{
    .snowflake {
        width:  3em;
        height: 3em;
    }
}