

body {
    margin: 0;
    padding: 0;
    background-color: black;
    background-size: cover;
    /* margin-right: 0 !important; */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100vh;
    width: 70%;
    font-size: 10px;
    padding: 28px;
    /* Einen Abstand vom Rand hinzufügen */
    box-sizing: border-box;
    /* Den Abstand in die Gesamthöhe einbeziehen */
}

.imprint-link {
    font-size: 13px;
}

.logo {
    width: 160px;
    /* max-width: 160px; */
    /* max-height: 100px; */
}

p {
    font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif, light; 
    font-weight: 300;
    font-size: 12px;
    margin: 0;
    color:white;
    /* background: rgba(255, 255, 255, 0.7); */
    /* padding: 20px; */
    padding-top: 30px;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); /* Hier wird der Schatten hinzugefügt */
}

a {
    text-decoration: none; /* Kein Unterstrich für den Link */
    color: #6cb5e2;
}

@media (max-width: 767px) {
    
    p {
        font-size: 14px;
    }

    .logo { 
        width: 100px;
    }
}