/* Schreibe hier deinen CSS-Code hin */

body {
    margin: 30px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    font-size: 22px;
    height: 90vh;
}
   
.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;
}  

.animation {
    grid-area: 2 / 1 / span 2 / span 3;
    background-image: url("../image/animation.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
}

.podcast {
    grid-area:  1 / 1 / span 1/ span 6;
    background-color: #d0fde2;
}

.product {
    grid-area:  2 / 10 / span 2 / span 3;
    background-image: url("../image/product.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
}

.portfolio-1 {
    grid-area:  2 / 4 / span 1 / span 6;
    background-color: #b8e8fd;
}

.portfolio-2 {
    grid-area:  3 / 4 / span 1 / span 6;
    background-color: #d8c3ee;

}

.wordpress {
    grid-area:  1 /7 / span 1 / span 6;
    background-color: #fdcfe8;
}

.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;
    }
}

