#title a
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none; /* No underlines on the link */
    z-index: 10; /* Places the link above everything else in the div */
    background-color: #FFF; /* Fix to make div clickable in IE */
    opacity: 0; /* Fix to make div clickable in IE */
    filter: alpha(opacity=1); /* Fix to make div clickable in IE */
}

#title h1
{
    text-align: center;
    color: white;
    font-family: 'Comfortaa', cursive;
    line-height: 70px;
    font-size: 50px;
    margin: 0;
}

#title
{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color:#005005;
    position: relative;
    height: 70px;
    transition: 0.2s;
}

#title:hover
{
    transform: scale(0.98);
}

body
{
   background-color:#2e7d32;
}

#flashGameContainer
{
    margin: auto;
    width: fit-content;
}

.gameTitle
{
    color:black;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    cursor: default;
}

#gamesList
{
    padding: 5px;
}

.thumb
{
    height: 28vh;
}

.polaroid
{
    float: left;
    width: fit-content;
    background-color: black;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s;
    padding: 5px;
    margin: 5px;
}

.polaroid:hover
{
    transform: scale(0.98);
}

.polaroid .container
{
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-family: 'Ubuntu', sans-serif;
}

.unityGame
{
    border: none;
    display: block;
    margin: auto;
    margin-bottom: 100px;
}