.hero-row {
    padding-top: 5%;
    display: flex;
    align-items: center;
    border-bottom: white;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    max-width: 100%;
}

.hero-text h1 {
    font-size: 3.0rem;
    font-weight: 800;
    color: white;
}

.hero-text p {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.hero-text h3 {
    font-size: 1.2rem;
    color: rgba(77, 170, 92, 0.7);
    font-style: italic;
}

.hero-image {
    max-width: 40%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(142, 217, 154, 0.4);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.project-section {
    padding-top: 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: flex-start;
}

.project-section p {
    max-width: 90%;
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

.project-future {
    max-width: 65%;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
}

.tech-breakdown {
    padding-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tech-breakdown p {
    max-width: 90%;
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.tech-breakdown-title {

    color: rgba(255, 255, 255, 1.0);
    font-size: 2.5rem;
}

.tech-breakdown-subsection {
    padding-top: 2%;
    padding-bottom: 2%;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.7rem;
    text-align: left;
    align-self: flex-start;
    margin-right: auto;
}

pre {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    background: #1e1e1e;
    color: #ebebeb;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    box-sizing: border-box;
}