html, body{height: 100%}
body{
  background: #fff;
  display: flex;
}
.card{
  width: 350px;
  padding: 30px;
  background: #000;
  margin: auto;
  transition: .3s ease;
  box-shadow: 0 1px 1px rgba(0,0,0,.3);
  
  &:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    transform: translateY(-10px) scale(1.02);
    .entry-title{
      background-position: -100% 0;
    } 
  }
}

.special { 
  color: #000; 
  background-color: #fff;
  
  a.special {color:black;}
}

a{
    color: white;
    text-decoration: none;
   
}

.entry-title{
  background: linear-gradient(to right, rgba(255,255,255,0) 50%, rgba(255, 255, 255,1.0) 50%);
  background-size: 200%;
  background-position: 0 0;
  display: inline;
  transition: .5s ease-in-out;
  font-family: raleway, arial, sans-serif;
  text-transform: uppercase;
  
  }
  

small{
  margin-top: 20px;
  display: block;
  font-family: raleway, arial, sans-serif;
  color: white;
  text-transform: uppercase;
  
  a{
    font-weight: 700;
    color: white;
    text-decoration: none;
  }
}

span{
  display: block;
  margin-top: 10px;
  font-family: raleway, arial, sans-serif;
  font-weight: 700;
  color: #fff;
  
  a{color: white}
}