.body {
    display: grid;
    grid-template: 1fr / 1fr 1000px 1fr;
    background-color: rgb(240, 255, 240);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.pageWrapper {
    display: grid;
    grid-template: 60px 1fr 5% / 1fr;
}

.navigationWrapper {
    display: flex;
    justify-content: center;
}

.navigationLogo {
    align-self: center;
    margin-right: 1em;
    height: 30px;
}

.navigationTitle {
    align-self: center;
}

.navigationLinks {
    list-style: none;
    display: inline;
    align-self: center;
}

li .navigationLinks {
    display: inline;
}

#imageSlider {
    width: 400px;
    float: right;
    margin: 1vw;
}

.image {
    width: 400px;
    float: right;
    margin: 1vw;
    clip-path: polygon(13% 0, 84% 0, 100% 100%, 24% 100%);
}

.footer {
    border-top: 2px;
    border-top-style: solid;
}

.footerAddress {
    display: flex;
    justify-content: space-between;
}

.mail {
    float: right;
}

a:hover {
    text-decoration: none;
    color: black;
}

a:link {
    text-decoration: none;
    color: black;
}

a:visited {
    text-decoration: none;
    color: black;

}

a:active {
    text-decoration: none;
    color: black;

}

@media (max-width: 1000px) {
    .body {
        display: grid;
        grid-template: 1fr / 1fr;
        background-color: honeydew;
    }

    .pageWrapper {
        display: grid;
        grid-template: 6.5vh 1fr 5vh / 1fr;
    }

    .image {
        width: calc(40vw);
        float: inherit;
        align-self: center;
        margin: 1vw;
    }
}

/*
class ImageSlider {
    constructor(images) {
        this.images = images;
        this.currentImageIndex = 0;
        this.slider = document.getElementById("imageSlider");
    }

    createSlider() {
        this.slider.appendChild(this.images);
    }

    onNext() {
        this.currentImageIndex++;
        this.createSlider.appendChild(this.images[this.currentImageIndex]);
    }
} */