body {
    background-color: gray;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 1em;
    padding: 0;
    display: flex;
    justify-content: center;
}


.content {
    background-color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: fit-content;
    border: 1px solid;
    filter: drop-shadow(.5rem .5rem .5em #444);
}

.header {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 10em;
    font-weight: bold;
    display: flex;
    flex: column;
}

.logo-bou {
    background-color: black;
    color: white;
    padding: .2em;
}

.logo-mar {
    background-color: white;
    color: black;
    padding: .2em;
}

.header-work {
    font-size: 2em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 0.1em;
}

.header-work-span {
    background: black;
    color: white;
    grid-column: span 3;
    height: .2em;
}

.header-work-item {
    background: black;
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.data {
    margin: 1.5em;
    font-size: 1.5em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.data-item {
    padding: .25em;
}

.data-mail {
    grid-column: span 2;
    text-align: center;
}

.data-name {
    text-align: right;
}

.data-phone {
    text-align: left;
}