body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Header Section */
.header-container {
    background-color: #1F2937;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20%;
}

.header-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: #F9FAF8;
    gap: 8px;
}

.header-right ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 18px;
    color: #E5E7EB;
    gap: 24px;
}

.header-left img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

a {
    text-decoration: none;
    color: white;
}
/* Header Section */

/* Hero Section */
.hero-container {
    display: flex;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5vh 20%;
    gap: 52px;
}

.hero-container > * { /* all children under hero-container shares flex 1 */
    flex: 1;
}

.hero-container-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.hero-container-right {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.hero-container {
    background-color: #1F2937;
}

.hero-container-title {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.hero-container-text,
.hero-container-button-container {
    font-size: 18px;
    color: #E5E7EB;
}

.hero-view-projects-button {
    background-color: #3882F6;
    border-radius: 8px;
    border: none;
    padding: 8px 32px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.hero-container-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
/* Hero Section */

/* Info Section */
.info-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 48px;
}

.info-title-container {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    margin-bottom: 48px;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
}

.info-image-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 200px;
}

.info-image-text-container img {
    border: 4px solid #3882F6;
    border-radius: 12px;
    width: 128px;
    height: 128px;
}
/* Info Section */

/* Quote Section */
.quote-container {
    background-color: #E5E7EB;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10% 20%;
}

.quote-container-quote {
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
}

.quote-container-quotee {
    font-size: 36px;
    color: #1F2937;
    font-weight: 800;
    align-self: flex-end;
}

/* Quote Section */
/* Call to action Section */
.call-to-action-container {
    display: flex;
    flex: 1;
    margin: 5% 15%;
    padding: 50px;
    background-color: #3882F6;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
}

.call-to-action-border {
    display: flex;
    flex: 1;
    justify-content: space-around;
    flex-wrap: wrap;
}

.call-to-action-container-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.call-to-action-container-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.call-to-action-container-text {
    color: hsl(0, 0%, 85%);
    font-size: 16px;
}

.call-to-action-container-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-to-action-github-button {
    background-color: #3882F6;
    border: 2px solid white;
    border-radius: 8px;
    padding: 8px 32px;
    margin: 0;
    font-weight: 600;
}
/* Call to action Section */

.footer-container {
    background-color: #1F2937;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}
