.stars{width: 6px;height: 6px;border-radius: 50%;box-shadow: 50px 30px #66ccff,100px 80px #66ccff,80px 120px #66ccff,300px 20px #66ccff,250px 130px #66ccff,200px 50px #66ccff,150px 100px #66ccff,320px 100px #66ccff;animation: anim-stars 10s linear infinite;}
@keyframes anim-stars {from {transform: translateY(0px);}to {transform: translateY(-150px);}}
.gly-spin { -webkit-animation: spin 2s infinite linear; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; animation: spin 2s infinite linear;}
@-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); }100% { -moz-transform: rotate(359deg); }}
@-webkit-keyframes spin {0% { -webkit-transform: rotate(0deg); }100% { -webkit-transform: rotate(359deg);}}
@-o-keyframes spin { 0% {  -o-transform: rotate(0deg);}100% { -o-transform: rotate(359deg); }}
@keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }100% { -webkit-transform: rotate(359deg); transform: rotate(359deg);}}
