.Impressum-box {
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.Impressum {
    display: flex;
    flex-direction: column;
    width: 800px;
    border: 1px solid;
    padding: 70px;
    box-shadow: 10px 10px rgb(198, 201, 204);
}

@media only screen and (max-width: 767px) {
    .Impressum-box {
        margin-top: 50px;
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
    }
    
    .Impressum {
        font-size: 13px;
        display: flex;
        flex-direction: column;
        width: 280px;
        padding: 30px;
        border: 1px solid;
        box-shadow: 10px 10px rgb(198, 201, 204);
    }
}