body{
background: linear-gradient(lime, green);
scroll-behavior:smooth;
text-align:center;font-family:arial,sans-serif;font-weight:bold;color:white
}
a:link{color:#ccccff;font-weight:bold;text-decoration:none}
a:visited{color:#aaaaff;font-weight:bold;text-decoration:none}
a:hover{color:yellow;font-weight:bold;text-decoration:none}
a:active{color:yellow;font-weight:bold;text-decoration:none}
/*
#logo{
border-style:none;
width: 800px;
/* height: 247px 
margin:auto;
}
*/


#logo{width:800px;position:relative;margin-top:5vh;animation-name:logoHorizontal;animation-duration:10s;animation-timing-function:ease-in-out;animation-iteration-count:infinite}
@keyframes logoHorizontal{0%{left:-20px}50%{left:20px}100%{left:-20px}}


#game{
box-shadow:20px 20px 10px #003300;
margin-bottom:20px;
border:0px inset #dad9d8;
border-radius: 0px;
display: none;
}
#loading{
margin-bottom:500px;
}
h2{text-align:center;
background-color:rgba(0,0,0,0.1);
margin-bottom:40px;
margin-top:20px;
font-family:"trebuchet ms",arial,sans-serif;font-size:90px;
color:rgba(0,255,0,0.5);
text-shadow: 5px 5px 5px #009900;
transition:all 0.3s ease;
transform:rotate(-2deg);
white-space:nowrap;
}
button:focus{outline:0;}
.sizeButton{
padding:2px 10px;
background:#aa00aa;
background-image:linear-gradient(#003388,#0000aa,#003388);
border:3px outset #dad9d8;
font-family:arial,sans-serif;
font-size:1em;letter-spacing:0.05em;color:#fff;
border-radius:15px;
box-shadow:10px 10px 5px #003300;
margin-bottom:20px;
button:focus {outline:0;}
}
#sizeButton:hover{
background-image:linear-gradient(#0055ff,#0000cc,#0055ff);
}
#promoBoys{
border: 0px;
border-bottom: 10px solid blue;
border-top: 10px solid blue;
width: 728px;
height: 90px;
overflow: hidden
}
#promoGirls{
border: 0px;
border-bottom: 10px solid magenta;
border-top: 10px solid magenta;
width: 728px;
height: 90px;
overflow: hidden
}
#privacyText{
text-align: left
}



#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,30,0,0.8);
    z-index: 2;
    cursor: pointer;
}

#text{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}