@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'Cartoonist';
    src: url('assets/CartoonistKooky.woff2') format('woff2'),
        url('assets/CartoonistKooky.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes MoveUpDown {
  0%, 100% {
    top: 540px;
  }
  50% {
    top: 560px;
  }
}

@keyframes MoveUpDown2 {
  0%, 100% {
    top: 240px;
  }
  50% {
    top: 260px;
  }
}

div#cloud1 {
    position:absolute;
    top:200px;
    right:0px;
    z-index:-20;
    animation: slide 50s linear infinite;
	animation-delay:20s;
	opacity:0;
}

div#cloud2 {
    position:absolute;
    top:300px;
    right:0px;
    z-index:-20;
    animation: slide 40s linear infinite;
	animation-delay:5s;
	opacity:0;
}

div#cloud3 {
    position:absolute;
    top:150px;
    right:0px;
    z-index:-20;
    animation: slide 25s linear infinite;
	
	opacity:0;
}

div#cloud4 {
    position:absolute;
    top:450px;
    right:0px;
    z-index:-20;
    animation: slide 60s linear infinite;
	animation-delay:10s;
	opacity:0;
}

@keyframes slide{
  0%{
    transform: translate3d(0, 0, 0);
    opacity:0;
  }

  5%{
      opacity:1;
  }

  98%{
      opacity:1;
  }
  100%{
    transform: translate3d(-1692px, 0, 0);
    opacity:0;
  }
}

#parrot {
    position:absolute;
    top:550px;
    margin-left:-50px;
    animation: MoveUpDown 3s linear infinite;
    
}

div#bat {
    position:absolute;
    top:550px;
    margin-left:750px;
	    animation: MoveUpDown 4s linear infinite;
}

#bird{
	    position:fixed;
    margin-left:890px;
    animation: MoveUpDown2 3s linear infinite;
}

body{
			    background-color: #2872ab;
    background-image: url(images/background1.png);
    background-position: center top;
    background-repeat: no-repeat;
    height: 100vh;
    overflow-x: hidden;
	margin:0px;
		}
		
h1{
	    -webkit-text-size-adjust: 100%;
    text-rendering: optimizelegibility;
    margin: 0px;
    line-height: normal;
    margin-bottom: 20px;
    font-family: 'Cartoonist';
    color: #2872ab;
    font-weight: normal;
    font-size: 36px;
}

h2{
	    -webkit-text-size-adjust: 100%;
    text-rendering: optimizelegibility;
    margin: 0px;
    line-height: normal;
    font-weight: normal;
    font-family: 'Cartoonist';
    color: #469d7d;
    font-size: 20px;
    margin-bottom: 10px;
}
p{
	    -webkit-text-size-adjust: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    line-height: normal;
    font-weight: normal;
    margin: 20px 0;
    margin-bottom: 10px;
    color: #27456a;
    font-size: 16px;
}
	
.align-left	p{
	text-align: left;
}

.petshop-button {
    width: 160px;
    height: 160px;
    position: relative;
    display: block;
    left: 10px;
    border-radius: 100px;
    top: 17px;
}
.population-wrapper {
        -webkit-text-size-adjust: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    position: absolute;
   
  margin-left:12px;
  margin-top:8px;
    font-family: 'Cartoonist';
    height: 32px;
   
    width: 252px;
}

span.num_tiles:nth-child(7) {

 padding-left:4px;
}

#display_div_id {
    margin-left:12px;
    margin-top:10px;
	width:100%;
}

#display_div_id span{
        -webkit-text-size-adjust: 100%;
     font-family: 'Cartoonist';
    font-size: 14px;
    color: #333333;
    margin: 0px;
    line-height: normal;
    font-weight: normal;
    float:left;
    letter-spacing:18.5px;
}

.spin {
	position: absolute;
    z-index: -20;
    -webkit-animation: rotation 2s linear infinite;
    animation: rotation 2s linear infinite;
    top: 170px;
    margin-left: 100px;

}

button.prev {
    background:none;
    border:none;
    position:absolute;
    margin-top:-200px;
    margin-left:-6px;

}

button.next {
    background:none;
    border:none;
    position:absolute;
    margin-top:-200px;
    margin-left:337px;

}
ol li {
	    -webkit-text-size-adjust: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 20px;
    margin-bottom: 5px;
    color: #27456a;
    font-size: 16px;
}

input{
	    -webkit-text-size-adjust: 100%;
    margin: 0;
    font-weight: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-left: 0;
    display: inline-block;
    height: 20px;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border linear 0.2s, box-shadow linear 0.2s;
    width: 300px;
    margin-bottom: 10px;
    border: 2px solid #469d7d;
    border-radius: 10px;
}

textarea{
	    -webkit-text-size-adjust: 100%;
    margin: 0;
    overflow: auto;
    font-weight: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: inline-block;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    vertical-align: middle;
    height: auto;
    background-color: #ffffff;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border linear 0.2s, box-shadow linear 0.2s;
    margin-left: 0;
    width: 300px;
    margin-bottom: 10px;
    border: 2px solid #469d7d;
    border-radius: 10px;
    clear: both;
}

select{
	    -webkit-text-size-adjust: 100%;
    margin: 0;
    cursor: pointer;
    font-weight: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: inline-block;
    padding: 4px 6px;
    font-size: 14px;
    color: #555555;
    vertical-align: middle;
    height: 30px;
    line-height: 30px;
    background-color: #ffffff;
    width: 320px;
    margin-bottom: 10px;
    border: 2px solid #469d7d;
    border-radius: 10px;
}

button#fcf-button {
        -webkit-text-size-adjust: 100%;
    margin: 0;
    vertical-align: middle;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-left: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    -webkit-appearance: button;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 10px;
    width: 150px;
    height: 71px;
    display: block;
    float: none;
    color: transparent;
    text-align: center;
    background: url("images/submit-button.png") top left;
    border: none;
}
a {
	    -webkit-text-size-adjust: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: normal;
    font-weight: normal;
    font-size: 16px;
    color: #0088cc;
    text-decoration: none;
}
		#logo {
			width:500px;
			margin:auto;
			margin-top:50px;
			text-align: center;
		}
		
		
		
		#header{
			margin:auto;
			width:869px;
		}
		.clouds{
			position:absolute;
			
		}
		
		.header-img {
    position: absolute;
    margin-left: -45px;
    margin-top: -70px;
    z-index: -10;
}

.header-img2{
	    -webkit-text-size-adjust: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #0088cc;
    height: auto;
    vertical-align: middle;
    border: 0;
    display: block;
    width: calc(100% + 20px);
    max-width: none;
    margin: 0 0 -38px -20px;
}
		
		#billboard{
			background-image: url("images/billboard.png");
			background-repeat: no-repeat;
			background-position: 10px;
			width:610px;
			height:639px;
			margin:auto;
			margin-top: 140px;
		}
		
		#petshop-button{
	background-image: url(images/pet-shop-button.png);
  background-repeat: no-repeat;
    background-position: 6px 15px;
    width: 171px;
    height: 180px;
    margin: auto;
    margin-top: 10px;
		}
		
		#petshop-button:hover{
			background-image: url(images/pet-shop-button-hover.png);
  background-repeat: no-repeat;
    background-position: 6px 15px;
    width: 171px;
    height: 180px;
    margin: auto;
    margin-top: 10px;
		}
		
		#score {
    margin-top:50px;
    margin-left:30px;
}
		
		#score-number{
			    background-image: url(images/score.png);
    width: 250px;
    height: 33px;
    float: left;
    background-repeat: no-repeat;
		}
	
		#slider{
		    padding-left: 30px;
    list-style: none;
		}
		
		#get-codes{
			background-image: url("images/got-codes.png");
  background-repeat: no-repeat;
    background-position: 6px 15px;
    width: 179px;
    height: 174px;
    margin: auto;
    margin-top: 40px;
			
		}
		
			#get-codes:hover{
			background-image: url("images/got-codes-hover.png");
  background-repeat: no-repeat;
    background-position: 6px 15px;
    width: 179px;
    height: 174px;
    margin: auto;
    margin-top: 40px;
			
		}
		
				#prizes{
			background-image: url("images/prizes.png");
  background-repeat: no-repeat;
    background-position: 6px 15px;
    width: 185px;
    height: 174px;
      margin-left: 0px;
    margin-top: 0px;
			
		}
				#prizes:hover{
			background-image: url("images/prizes-hover.png");
  background-repeat: no-repeat;
    background-position: 6px 15px;
    width: 185px;
    height: 174px;
      margin-left: 0px;
    margin-top: 0px;
			
		}
		
		#left{
			float:left;
			width:417px;
		}
		
		#right{
			float:left;
			width:100px;
		}

.content-box{
	    -webkit-text-size-adjust: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    width: 860px;
    position: relative;
    padding: 30px 40px 40px 40px;
    margin: 0px auto 50px auto;
    display: block;
    border: 3px solid white;
    background-color: #eeffee;
    border-radius: 20px;
	
}

.content{
	margin: 0 auto;
    width: 720px;
    text-align: center;
}



		
		