html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing: inherit;
}

body {
   background-image: url(../img/Busines-card-background.png);
    
    min-height: 100vh;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

.person__photo {
    height: 148px;
    width: 148px
}

.card {
    background: #F8F8F8;
    border-radius: 16px;
    max-width: 624px;
    width: 100%;
    padding: 32px;
}

.person {
    display: flex;
    align-items: flex-start;
}

.person__photo {
    margin-right: 32px;
}

.person__link {
    color: #E20613;
    text-decoration: none;
}

.person__name {
    margin: 0;
    font-size: 36px;
    font-weight: normal;
}

.person__position {
    color: #545454;
    font-style: italic;
    font-size: 18px;
}

.person__special {
    color: #ED6D05;
    font-weight: normal;
}

.person__header {
    margin-bottom: 32px;
}

.person__description {
    font-size: 16px;
    line-height: 22px;
}