/* make cells visible for debugging purposes
.cell {
    background-color:blue; 
    border: 1px solid;
}*/

body {
	background-image: url("../img/portfolio/verlauf_gespiegelt_blaugruen.jpg");
}

/* Styling of Popup */
div.reveal {
    background-color: rgb(74,62,73);
	padding: 3%;
    border-radius: 10px;
    border-color: rgb(48, 17, 138);
	border-color: rgba(48, 17, 138,0.5);
    text-align: center;
}

/* Styling of Popup figcaption */
div.reveal figcaption {
    color: #AB6F28;
    padding: 3%;
    padding-bottom: none;
}

/* Remove rounded borders on mobile*/
@media only screen and (max-width: 40em) {
    div.reveal {
        border-radius: 0px;
    }

}


/* Hover Feature on the Grid Images */
div.cell img{
    transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

div.cell img:hover {
    opacity: 0.9;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: scale(1.02)
}