

.top {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.img-wrapper img {
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -100;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.img-wrapper {
    display: inline-block; /* change the default display type to inline-block */
    overflow: hidden;
}

.above-top {
    padding-top: 100px;
    min-height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.38);
}

.top-text {
    text-align: center;
    color: white;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}




.top-text img{
    width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.second {
    position: relative;
    overflow: hidden;

}



.second h3 {
    text-align: center;
    margin: 0 auto;

    margin-top: 50px;
    margin-bottom: 50px;
    width: 90%;
}

.liste {
    border-radius: 8px;
    margin: 0 auto;
    width: 60%;
    margin-bottom: 50px;
    margin-top: 50px;
    padding: 20px;
    box-shadow: 0px 10px 25px -10px #1f2121;

}


footer {
    color: white;
    text-align: center;
    background-color: black;
}

footer p{
    margin-bottom: 0;
}



@media screen and (max-width: 1200px) {
    .liste {
        width: 80%;
    }
}


@media screen and (max-width: 1000px) {
    .liste {
        width: 90%;
    }
}

@media screen and (max-width: 700px){
    .liste {
        width: 90%;
    }

    .top-text img{
        width: 300px;
    }


}