body {
    color: #FFFFFF;
    font-family: Verdana, Sans-Serif;
    font-size: x-small;
    }
    
img { border: 0; }

    /* Logo */
    
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -315px;
    margin-top: -270px;
    z-index: -1;
    }
    
   /* Free Stickers */
	
.freeStick {
   	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -305px;
	margin-top: -280px;
	z-index: 2; 
    }

    /* Select Your Area */
	
.sya {
   	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -83px;
	margin-top: 20px;
	z-index: 2; 
    }
    
    /* Choices */
    
.choice {
    	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -110px;
	margin-top: 35px;
	z-index: 2;
    }

    /* Line */
    
.liner {
	width: 300px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -150px;
	margin-top: 110px;
	z-index: 2;
    }       
    /* Footer */
    
.footsie {
	width: 430px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -215px;
	margin-top: 120px;
	z-index: 2;
    }

/* POPUP */

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 50;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #111;
  border-radius: 10px;
  width: 70%;
  height: 60%;
  position: relative;
  transition: all 2s ease-in-out;
}

.popup .popclose {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #888;
}
.popup .popclose:hover {
  color: #EEE;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 600px){
  .box{
    width: 60%;
  }
  .popup{
    width: 60%;
  }
}

/* VIDEOS */

.the_videos { 
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -280px;
	margin-top: -157px;
	width: 600px;
	z-index: 51;
}
	
    /* Grow */

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.aurora-outer {
	background: linear-gradient(45deg, #AAAAAA 0%, #FFFFFF 90%);
	background-size: 200%;
	animation: aurora 10s infinite;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: -2
}

@keyframes aurora {
    0% {
        background-position: left top;
    }
    25% {
        background-position: right top;
    }
    50% {
        background-position: right bottom;
    }
    75% {
        background-position: left bottom;
    }
    100% {
        background-position: left top;
    }
}