/* 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;
}

.animation {
    grid-area: 1 / 1 / span 1 / span 5;
   background-image: url("../image/roboter.jpg");
   background-size: cover;
   background-position: center;

}

.portfolio-1 {
    grid-area: 2 / 1 / span 2 / span 5;
    background-color: #bcb8f2;
}

.product {
    grid-area: 1 / 6 / span 3 / span 3;
    background-color: #f7d8e5;
}

.wordpress {
    grid-area: 1 / 9 / span 1 / span 4;
    background-color: #f2a2e6;
}

.portfolio-2 {
    grid-area: 2 / 9 / span 1 / span 4;
    background-color:#eac8f7;
}

.podcast {
    grid-area: 3 / 9 / span 1 / span 4;
    background-image: url("../image/mikrofon.jpg");
    background-size: cover;
    background-position: center;
    color: white;

}

.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;
}

.podcast a {
	color: white;
}

.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;
    }
}

