/* Schreibe hier deinen CSS-Code hin */
body {
    margin: 30px
}
.grid-container {
    font-size: 22px;
    height: 90vh;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}
.podcast {
    grid-area: 1 / 5 / span 1 / span 3;
    background-image: url("../image/himmel.jpg");
    background-position: center ;
    background-size: cover;
}
.portfolio-1 {
    grid-area: 1 / 8 / span 1 / span 5;
    background-color:#f6ebfa;
}
.portfolio-2 {
    grid-area: 2 / 5 / span 1 / span 5;
    background-color: #992fc9;
}
.product {
    grid-area: 1 / 1 / span 3 / span 4;
    background-color:#ddb7ee;
}
.wordpress {
    grid-area: 3 / 5 / span 1 / span 8;
    background-color: #b563da;
}
.animation {
    grid-area: 2 / 10 / span 1 / span 3;
    background-image:url("../image/rose-2548784_1280.jpg");
    background-position: center ;
    background-size: cover;
    color: white;
}

.animation a {
    color: white !important;
}

.animation:hover a {
   color: black !important;
}

.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;
}

@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;
    }
}