body {
    font-family: Montserrat, sans-serif;
    background-color: #FFFCF6;
    color: #2E130A;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-size: clamp(14px, 4.5vw, 32px);
}

.business-card {
    display: flex;
    align-items: center;
    /* padding-block: 20px 50px; */
    /* padding-inline: 20px; */
    /* width: 320px; */
    max-width: 100%;
    font-weight: 400;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo img {
    width: clamp(80px, 19vw, 247px);
    height: auto;
}

.details {
    flex: 2;
    /* padding-left: 20px; */
}

.details h2 {
    margin: 0 0 0.4em 0;
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 500;
}

.details p {
    margin: 0.6em 0;
}

.spacer {
    width: 1px;
    background: rgb(205 74 2 / 60%);
    align-self: stretch;
    margin-inline: clamp(15px,9vw, 160px);
    flex-shrink: 0;
}

.details p a {
    text-decoration: none;
    color: #2E130A;
}

.details p a:hover {
    text-decoration: underline;
}

.diensten {
    margin-block-start: 0;
    padding-inline: 1em;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 17px;
}

.diensten > * {
    text-align: center;
    font-size: clamp(1rem, calc(1rem + (5vw - 1.875rem) * 2.5), 1.3rem);
}

@media(min-width: 768px) {
    .business-card {
        transform: scale(0.8);
    }

    .diensten {
        flex-wrap: nowrap;
    }

    .diensten li:not(:first-of-type) {
        border-left: 2px solid rgb(205 74 2 / 60%);
        padding-left: 17px;
    }
}

@media (max-width: 500px) {
    p.services {
        max-width: 400px;
    }

    p.services span:nth-of-type(2) {
        display: none;
    }
}