.imageSpinner {
	  position: relative;
	left: 100px;
	top: 100px;
	  background-color: transparent;
    -webkit-animation:spin 4s linear 6s;
    -moz-animation:spin 4s linear 6s;
    animation:spin 4s linear 6s;
}
@-moz-keyframes spin { 100% { -moz-transform: rotateY(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotateY(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotateY(360deg); transform:rotateY(360deg); } }

.bg
{
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  background-image: url('../img/bg.jpg');
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

    /* Add the blur effect */
    backdrop-filter:blur(2px);
}