.main {
    margin: 5rem;
}
.text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}
.text h1 {
    text-align: left;
    text-decoration: underline;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #70a7f3;
    text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 1px;
    margin-bottom: 3rem;
}
.impressum p {
    text-align: left;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 400;
}
.impressum {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow:  0.065rem 0.05rem 0.5rem #90b7f2af;
    padding: 3rem;
}

@media (max-width: 1000px) {
    .text p {
        width: 100%;
    }
    .main {
        margin: 1rem 0;
    }
}

@media (max-width: 600px) {
    .text p {
        font-size: 1.2rem;
        line-height: normal;
    }
    .text h1 {
        font-size: 2rem;
    }
}