html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #282828;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    width: 80%;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        .separator {
            display: none;
        }
    }
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.separator {
    width: 1px;
    height: 100%;
    background-color: #282828;

    @media (max-width: 768px) {
        display: none;
    }
}

.logo img {
    max-width: 300px;
}

.logo-impressum {
    max-width: 100px;
}

.coming-soon h1 {
    font-size: 3em;
    margin: 0;
}


.footer {
    background-color: #1b1b1b;
    color: #fff;
    text-align: right;
    padding: 10px 20px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

