/* Schreibe hier deinen CSS-Code hin */
.grid-container {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: 30px;
	row-gap: 30px;
    font-size: 22px;
    height: 90vh;
}

.podcast{
	grid-area: 1 / 7 / span 2 / span 6;
    background-color: #E0867B;
}

.portfolio-1{
    grid-area:  4 / 8 / span 1 / span 5;
    background-color: #E68D43;
}

.portfolio-2{
    grid-area:  4 / 1 / span 1 / span 7;
    background-image: url("../image/herbstorange.jpg");
    background-position:center;
    background-size: cover;
    color: white;
}

.product{
    grid-area: 3 / 7 / span 1 / span 6;
    background-image: url("../image/Blume.jpg");
    background-position: center;
    background-size: cover;
    color: white;
}

.product a,
.portfolio-2 a {
    color: white !important;
}

.product:hover a,
.portfolio-2:hover a {
    color: black !important;
}

.wordpress{
    grid-area: 2 / 1 / span 2 / span 6;
    background-color: #E0B8AB;
}

.animation{
    grid-area: 1 / 1 / span 1 / span 6;
    background-color: #E0BF89;
}

.item {
    position: relative;
	transition: all 0.5s ease;
    border: 1px solid white;
    cursor: pointer;
    padding: 60px;
    text-align: center;
}

.item:hover {
	background-color: white;
    background-image: none;
    border: 1px solid black;
}

.item a {
	color: black;
	text-decoration: none;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.item:hover a {
    color: black;
}

.bi {
  margin: 0 20px;
}

body{
    margin: 30px;
}

@media (max-width: 1199px) {
    .grid-container {
        column-gap: 15px;
        row-gap: 15px;
    }
}

@media (max-width: 767px) {
    body {
        margin: 15px;
    }
    .grid-container {
        display: block;
        height: auto;
        font-size: 18px;
    }
    .item {
        margin-bottom: 15px;
    }
}

