.stickydiv {
    height: 100vh;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide1 {
    background: url("../../resources/images/0.jpeg") no-repeat center center;
    background-size: cover;
}

.slide2 {
    background: url("../../resources/images/1.jpeg") no-repeat center center;
    background-size: cover;
}

.innertext {
    text-align: center;
    text-justify: inter-word;
    color: white;
    font-family: 'calibri', sans-serif;
    font-size: 25px;
    line-height: 40px;
    text-shadow: 1px 1px 5px black;
    filter: dropshadow(color=black, offx=2, offy=2);
}

.textcontainer {
    padding-left: 12em;
    padding-right: 12em;
    transition: all .5s;
}

@media (max-width: 1200px) {
    .textcontainer {
        padding-left: 2em;
        padding-right: 2em;
    }
}

