/* Structure */
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: darkseagreen;
}

.columns
{
    display: flex;
    justify-content: space-around;
    background-color: aquamarine;
}

.messages
{
    text-align: left;
    padding-left: 5px;
}



#hideandseek, #animate, #input
{
    border: 3px solid black;
    flex:1;
}

#lion
{
    width:100px;
    height:100px;
    text-align: center;
    line-height: 100px;
}

.move-lion 
{
    position: relative;
    animation-name: anim-lion;
    animation-duration: 1s;
    animation-iteration-count: 1;
}
@keyframes anim-lion {
    0% {
        background-color: red;
        opacity: 1;
        right:0px;
    }
    50% {
        background-color: greenyellow;
        opacity: 0;
        left:100px;
    }
    100% {
        background-color: aqua;
        opacity: 1;
        top:50px;
    }
}

/* pad buttons */




/* Footer */
#footer-title
{
    text-align: center;
}



/* Images */
#head
{
    max-width: 35%;
}
#dance-image
{
    max-width: 50%;
}
#lion
{
    font-size: 3em;
}


/* Typeography */
.header
{
    text-align: center;
    background-color:lightslategray;
}
.hide
{
    visibility: hidden;
}
.titles
{
    text-align: center;
}
#footer-title
{
    text-align: center;
    background-color: cadetblue;
}


/* Smaller resolution */
@media only screen and (max-width: 600px)
{
    .columns
    {
        display: inline;
        background-color: aquamarine;
    }
}