body {
  padding-top: 5rem;
}
.mainContent {
  padding: 3rem 1.5rem;
  text-align: center;
}


.textContent{
	text-align:justify;
	margin:0 3rem;
}


.album {  
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}


.card {
  float: left;
  width: 33.333%;
  padding: .75rem;
  margin-bottom: 2rem;  
  border: 0;
}

.cardImg {
  margin-bottom: .75rem;
  position:relative;
}

.cardImg:hover{
	opacity: 0.5;
}


.cardTitle{	
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;	
	opacity: 0.0;
	font-size:1.6em;
	color:#000;
	background-color:#f7f7f7;
	position:absolute;
	top:0.5rem;
	left:0.5rem;
	margin-right:0.5rem;
	width:95%;	
	text-align:center;
}

.cardImg:hover + .cardTitle{
	opacity: 1.0;
}

.card-text {
  font-size: 85%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cardTextWrapper{
	
}


@media only screen and (max-width: 768px) 
{    
    .card {
        width: 100%;
    }
}


.stuff {
    opacity: 0.0;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.hover {
    width:80px;
    height:20px;
    background-color:green;
    margin-bottom:15px;
}
.hover:hover + .stuff {
    opacity: 1.0;
}
