html, body, h1 {
  height: 100%;
  width: 100%;
  overflow: hidden;
  outline:none;
}

body {
  -webkit-transition: background-color 0.3s ease-in;
          transition: background-color 0.3s ease-in;
  font-family: "Roboto", sans-serif;
  background-color: #ff002b;
  overflow: hidden;
  font-size: 12px;
  background-image:url(../img/01.png);
  background-size:cover;
}

small {
    font-size: 50%;
	 opacity: 0.5;
}

a {
	text-decoration:none;
	color:#fff;
	font-weight:bold;
	padding:0px 3px;
	background:rgba(0,0,0,0.3);
}

div#wha {
    position: absolute;
    display: inline-block;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    height: 20px;
    width: 20px;
    text-align: center;
    cursor: help;
	z-index: 100;
	    font-weight: bold;
}

div#getit {
    width: 100%;
    height: 100%;
    background: transparent;
}
div#youarewinnar {
    position: absolute;
    top: 60%;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 26px;
    padding: 10px 30%;
    box-sizing: border-box;
    line-height: 34px;
}
@media (min-width: 480px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 640px) {
  body {
    font-size: 16px;
  }
}



svg {
  height: 100%;
  width: 100%;
  position: relative;
  top: -3rem;
  -webkit-animation: pop-out 2s ease-in-out /* infinite */;
          animation: pop-out 2s ease-in-out /* infinite */;
		      animation-iteration-count: 2;
   /*  animation-direction: reverse; */
	    -webkit-animation-iteration-count: 2;
  /*   -webkit-animation-direction: reverse; */
}

.word {
  font-family: "Bangers", cursive;
  letter-spacing: 0.05em;
  color: #222;
  padding: 0.5em;
  font-size: 28px;
  text-shadow: 0px 0px 50px rgba(255,255,255,0.3);
}
@media (min-width: 480px) {
  .word {
    font-size: 46px;
  }
}
@media (min-width: 640px) {
  .word {
    font-size: 68px;
  }
}
@media (min-width: 960px) {
  .word {
    font-size: 84px;
  }
}
@media (min-width: 1280px) {
  .word {
    font-size: 140px;
  }
}

p {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 36px;
    text-align: center;
    color: #eee;
    background-color: rgba(0,0,0,0.3);

    font-size: 14px;
}

@-webkit-keyframes pop-out {
  0% {
    -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale3d(4.5, 4.5, 1)  rotate(-520deg) ;
            transform: scale3d(4.5, 4.5, 1)  rotate(-520deg) ;
    opacity: 0;
  }
}

@keyframes pop-out {
  0% {
    -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale3d(4.5, 4.5, 1)  rotate(-520deg) ;
            transform: scale3d(4.5, 4.5, 1)  rotate(-520deg) ;
    opacity: 0;
  }
}



@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}