/* Grundeinstellungen */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: #f4f4f2;
    font-family: Arial, Helvetica, sans-serif;
}


/* Visitenkarte */

.business-card {
    width: 100%;
    max-width: 560px;
    padding: 55px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}


/* Logo */

.logo {
    margin-bottom: 25px;
}

.logo img {
    display: block;
    width: 100%;
    max-width: 130px;
    height: auto;
}

/* Inhalt */


h1 {
    margin: 0 0 5px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -1.0px;
	color: #e43e4c;
}

h2 {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.1;
	color: #888888;
	letter-spacing: 1.5px;
}

.label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
}


.description {
    max-width: 400px;
    margin: 0 0 38px;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}


/* ---------------------------------
   Kontaktdaten
--------------------------------- */

.contact {
	margin-top: 25px;
    font-size: 15px;
    line-height: 1.3;
}


/* Adresse */

.address {
    margin-bottom: 20px;
}


/* Kontaktzeilen */

.contact-row {
    display: grid;
    grid-template-columns: 75px 1fr;
    column-gap: 10px;

    margin: 0;
    padding: 0;

    line-height: 1.3;
}


/* Bezeichnung */

.contact-label {
    font-weight: 600;
}


/* Wert */

.contact-value {
    min-width: 0;
}


/* Links */

.contact-value a {
    color: #171717;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}


/* Smartphone */

@media (max-width: 480px) {

    .contact {
        font-size: 14px;
    }

    .contact-row {
        grid-template-columns: 70px 1fr;
        column-gap: 8px;
    }

}

/* Footer */

footer {
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #aaaaaa;
}


/* Smartphone */

@media (max-width: 600px) {

    body {
        padding: 18px;
    }

    .business-card {
        padding: 35px 28px;
        border-radius: 14px;
    }

    .logo {
        margin-bottom: 35px;
    }

    .logo img {
        width: 65px;
    }

    h1 {
        font-size: 31px;
    }

    .description {
        font-size: 15px;
    }

    footer {
        margin-top: 40px;
    }

}

@media (max-width: 480px) {

    .contact-row {
        grid-template-columns: 75px 1fr;
        gap: 8px;
    }

}