.con-center1 {
    display: flex;
    justify-content: center;
}

.con-main1 {
    width: 714px;
}

.impressum-title {
    font-size: 40px;
    margin: 0 0 25px 0;
    font-weight: 600;
}

.impressum-text {
    font-size: 18px;
    margin: 25px 0 0 0;
}

.bigger {
    font-size: 23px;
}

body {
    min-height: 100vh;
}

.view {
    height: clamp(840px, calc(100vh - 170px), calc(100vh - 170px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mobile */

@media (max-width: 750px) {
    .con-main1 {
        width: 90vw;
    }
}

@media (max-width: 555px) {
    .view {
        height: clamp(650px, calc(100dvh - 50px), calc(100dvh - 50px));
    }
    .impressum-title {
        font-size: 25px;
    }
    .con-center1 {
        margin: 40px 0 0 0;
    }
    .impressum-text {
        margin: 5px 0 0 0;
        font-size: 11px;
    }
    
    .bigger {
        font-size: 16px;
    }
}