.pageStart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    border-radius: 50%;
}

.pageStart img {
    width: 50vh;
    height: 50vh;
    border-radius: 100%;
    box-shadow: 0px 20px 15px #ccc;
}

.startLogo img {
    width: 25vh;
    height: 25vh;
    border-radius: 100%;
    box-shadow: 0px 20px 15px #ccc;
}

.more {
    width: 100%;
    margin-top: -120px;
    margin-bottom: 75px;
    font-family: 'Raleway', sans-serif;
}

.more a {
    text-decoration: none;
    color: black;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.more img {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    60% {
      transform: translateY(-15px);
    }
}

.leistungen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sitesPSW {
    display: flex;
    align-items: center;
}

.imprint {
    font-family: 'Raleway', sans-serif;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 150px;
}

.imprintSection {
    margin-top: 50px;
    margin-bottom: 50px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 1000px) {

    .team {
        flex-direction: column;
    }

    .pageStart img {
        width: 40vh;
        height: 40vh;
    }

    .sitesPSW {
        display: flex;
        flex-direction: column;
    }

}

@media(max-width: 600px) {

    .pageStart img {
        width: 30vh;
        height: 30vh;
    }

}