body {
    margin: 0;
    padding: 0;
    background-color: rgb(73, 73, 73);
    font-family: Arial, sans-serif;
    color: white; /* Set text color for the body */
}

.container {
    text-align: center;
    padding-top: 50px; /* Adjust as needed */
}

.logo-address-contact-details-container {
    display: flex;
    flex-direction: column; /* Stack items vertically by default */
    align-items: center; /* Center-align items horizontally */
    margin-bottom: 20px;
    margin-top: 40px;
}

.logo {
    max-width: 90%; /* On desktop, maximum width is 50% */
    height: auto;
}

.address-contact-details-container {
    display: flex;
    flex-direction: column; /* Stack items vertically by default */
    align-items: center; /* Align items to the start */
    margin-top: 20px; /* Add space between logo and address */
    text-align: center;
    line-height: 0.8;
    font-weight: bold;
    font-size:larger;
}


.impressum {
    font-size: 14px;
    margin-top: 50px;
    text-align: left;
    padding-left: 40px; /* Adding left padding */
    padding-right: 40px;
}

@media only screen and (min-width: 601px) { /* Adjust for desktop */

    .logo {
        max-width: 50%; /* On desktop, maximum width is 50% */
    }
    .logo-address-contact-details-container {
        align-items: center; /* Center-align items horizontally */
        justify-content: center; /* Center-align items horizontally */
    }

    .address-contact-details-container {
        flex-direction: row; /* Arrange items horizontally */
        justify-content: center; /* Center-align items horizontally */
    }

    .address {
        text-align: left; /* Left-align the text */
        padding-right: 20px;
    }

    .contact-details { 
        text-align: right; /* Right-align the contact details */
        padding-left: 20px;
    }
}