/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jul 11, 2020, 2:23:45 PM
    Author     : matt2
*/

a {
    color: black;
}

.footer {
  border-top: 1px solid black;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  color: black;
/*  text-align: center;*/
}
#top{
    border-bottom: 1px solid black;
    padding: 0px;
    margin: 0px;    
}
#bottom{
    border-: 1px solid black;
    padding: 0px;
    margin: 0px;  
}
.middle{
    padding-left: 15em;
}

/* Shine */
figure {
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
}
figure:hover+span {
    bottom: -36px;
    opacity: 1;
}

.game figure {
    position: relative;
}
.game figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.game figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.game figure img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.game figure:hover img {
    opacity: .5;
}

@-webkit-keyframes shine {
    100% {
      left: 125%;
    }
}

@keyframes shine {
    100% {
      left: 125%;
    }
}

@media (min-width: 768px) {
    .navbar-brand.abs
    {
        position: absolute;
        width: 100%;
        left: 0;
        text-align: center;
    }
}








