/* TRANSITION TIMES */
:root
{
    --imageHoverTime: 0.5s;
    --footerTransitionTime: 0.1s;   
    --logoTransitionTime: 0.1s;
}

/*CUSTOM FONTS*/
@font-face {
  font-family: "HeaderFont";
  src: url(../fonts/KTEGAKI.ttf);
  format: ("truetype");
}
@font-face {
  font-family: "MainFont";
  src: url(../fonts/KTEGAKI.ttf);
  format: ("truetype");
}
  

/*BODY*/
body {
  background-color: #fff;
  font-size: 100%;
}
body, h1, p {
    font-family: "MainFont", "Comic Sans", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #171826;
    text-align: center;
}
    

/*CONTENT*/
.content {
    margin-left:  auto;
    margin-right:  auto;
    margin-top: 0px;
    padding-right: 15px;
    padding-left: 15px;
}
p {
    margin: 0;
    padding: 0;
    color: #555;
    font-size: 4em;
}
a {
  color: #ff003c;
  text-decoration: none;
}
a:hover {
  color: #000;
}
    

/*HEADERS*/
h1 {
    font-size: 5em;
    font-weight: 300;
    margin: 0 0 0px 0;
    text-align: center;
    font-family: "HeaderFont", "Comic Sans", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
}
h2 {
    font-size: 1.8em;
    font-weight: 500;
    margin: 0 0 0px 0;
    text-align: center;
    font-family: "HeaderFont", "Comic Sans", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
}
       

/*GIZMOS*/
        
.whitespace {
    width:100%;
    height:24px;
}
.floater{
    display: inline-block;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 32px;
    width: 30%;

    background-color: #fff;
    border-radius: 48px;box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.floaterNaked{
    display: inline-block;
    width: 460px;
    height: 215px;
    padding: 0px;
    margin: 12px;
    box-shadow: 1px 14px 23px -6px rgba(0,0,0,0.35);
    transition: all var(--imageHoverTime); 

}
/* GAME IMAGE TRANSITION */
.floaterNaked:hover
{
   transform: scale(1.1);
}
.floaterNaked:active
{
    /* Shortened the transition time for the click */
    transition: transform 0.1s;
    transform: scale(0.95);
}


.floaters{
    text-align: center;
}

/*FOOTER*/
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    
    padding: 12px;
    margin: 0px;
    color: #fff;
    background-color: #888;
    text-align: center;
    font-size: 24px;
    box-shadow: 1px 5px 23px 10px rgba(0,0,0,0.15);
    transition: all var(--footerTransitionTime) ease-in-out;
    transform-origin: center;

}   
 /* FOOTER ANIMATION  */
.footer:hover
{
    cursor:grab;
}
.footer:active
{
    transform: scale(1, 0.85);
    cursor: grabbing;
}



/* LOGO ANIMATION */
#logo{
    transition: all var(--logoTransitionTime);
}
#logo:hover
{
    cursor:grab;
}
#logo:active
{
    transform: scale(0.9);
    cursor: grabbing;
}



/*SCREEN SIZE ADJUSTMENTS*/
    @media screen and (max-width: 520px) {
        
        .content {
            max-width: 100%;
        }
        
        .footer {
            position: relative;
            width: auto;
        }   
        
        .floaterNaked{
            width: 368px;
            height: 172px;
        }
        
        p {
            margin: 0;
            padding: 0;
            color: #555;
            font-size: 2em;
        }
        
    }
