body {
    background-color: #f7f7f4;
    font-family: 'DM Sans', sans-serif;
    padding: 20px;
}

.business-card {
    width: 90%; /* expand to fill most of the screen */
    background-color: #f2f1ed;
    margin-top: 30px; /* reduce wasted top space */
    padding: 20px;
    text-align: center;
    font-size: 16px;
    max-width: 90%;
    border-radius: 16px;
}

.header-container {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 2rem;
    text-align: left;
    flex-wrap: wrap;
}

.intro-block {
    display: flex;
    flex-direction: column;
}

.social-media img {
    width: 35px;
    height: 35px;
}

.profile-image {
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
}

h1,
h2,
h3,
p {
    color: #26251e;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.email,
.about {
    text-align: left;
}
  

.description,
.email {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: #f54e00;
}

a:hover {
    text-decoration: underline;
    color: #f54e00;
}

hr {
    margin-top: 1em;
    margin-bottom: 1em;
    border: none;
    background-color: #f54e00;
    height: 1px;
}

.hi {
    margin-bottom: 0;
}

.full-name {
    margin-top: 0;
    margin-bottom: 0.5em;
}

.social-media {
    text-align: center;
    align-items: center;
}

.social-media p {
    display: inline-block;
    margin: 5px;
}

.social-media img {
    width: 20px;
    height: 20px;
    display: inline-block;
}
    
