@charset "utf-8";
/*CSS-Dokument*/

/* ==========================================================
   INHALT
========================================================== */
.gallery {
	background: #fff;
	border-radius: 12px;
	margin-top: 2rem;
	padding: 0 1rem 1rem 1rem;
}

.gallery img {
	border-radius: 12px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .25s ease,
                box-shadow .25s ease;
}

.gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

.video {
	display: block;
	margin: 2.5rem auto 1rem;
	width: 280px;
	height: auto;
}

/* Trenner */
.linie {
    background-color: #545454;
    height: 0.1rem;
    margin: 2rem auto;
    width: 75%;
}