body {
    background-color: #f7f7f4;
    font-family: 'Geist', 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;
}

.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: underline;
    text-decoration-color: #f65b22;
    color: #26251e;
}

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

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

.hi {
    margin-bottom: 0;
}

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

.social-media {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 12px;
    margin-top: 0.75em;
}

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

.projects {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    text-align: left;
    flex-wrap: wrap;
}

.projects-column {
    flex: 0 0 auto;
}

.projects h2 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.projects ul {
    margin-top: 0;
    padding-left: 1.25rem;
}
    
