* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
    flex-wrap: wrap;
}

body {
    background-image: url(Images/hintergrund.jpeg);
    min-height: 100vh;
}

.about {
    background-color: white;
    text-align: center;
    min-height: 100px;
    margin-top: 57px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 20px;
    padding-top: 20px;
}

.aboutD_S h2{
    padding: 10px;
}

.about ul {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
}

.about ul li {
    margin: 0 1px;
    padding: 1px;
}

.about ul li a {
    color: gray;
}

.about ul li a:hover {
    color: orangered;
    transition: .6s;
}

.informationen {
    padding: 20px;
}

.informationen a {
    padding: 8px;
}

@media(max-width: 800px){
    h2 {
        font-size: 12vw;
        text-align: center;
    }
    .aboutD_S p {
        text-align: center;
    }
}