body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

main {
    padding: 40px;
    padding-top: 40px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 20px;
}

.stripes-top {
    position: absolute;
    top: 0;
    right: 0;
    height: 100px;
    -webkit-transform: rotateX(180deg) rotateY(180deg);
}

.stripes-bottom {
    position: relative;
    bottom: 0;
    left: 0;
    margin-bottom: -10px;
    height: 100px;
}

.logo {
    width: 35vw;
    max-width: 400px;
}

.hero-description {
    margin-top: 0px;
}

.hero-image {
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto 0 auto;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; 
    margin: auto; 
}

.responsive-image {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}

.imprint {
    text-align: center;
    font-size: small;
    margin-top: 4em;
}


@media only screen and (max-width: 600px) {

    .image-container {
        grid-template-columns: 1fr;
    }
}
