body {
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 100;
    height: 100vh;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    background-color: #FAFAEB;
}

section {
    background-color: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0 0 10px grey;
    left: 50%;
    min-width: 275px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

section.imprint {
    padding: 1.5em;
}

h1, h2 {
    font-weight: 100;
    margin: 0 0 5px;
}

h2 {
    font-size: 1em;
    margin-bottom: 20px;
}

h3 {
    font-size: 0.85em;
    margin-bottom: 0;
}

img {
    height: 100%;
    max-width: 275px;
    width: 100%;
}

span, a {
    display: block;
}

p {
    font-size: 0.85em;
    margin-top: 0;
}

.business-card {
    text-align: center;
}

.information {
    padding: 15px;
}

address {
    font-size: 0.85em;
    margin-bottom: 20px;
}

.logo-wrapper {
    display: inline-flex;
}

.logo {
    height: 30px;
    width: 30px;
}

.logo:first-child {
    margin-right: 15px;
}

.imprint-link {
    bottom: 5px;
    position: absolute;
    right: 5px;
}

@media only screen and (min-width: 600px) {
    section {
        min-width: 510px;
    }

    img {
        max-width: 213px;
    }

    .business-card {
        display: flex;
        text-align: left;
    }

    .logo-wrapper {
        display: flex;
    }
}