.dark-mode {
    --primary-color: #2b6be2;
    --text-color: #fff;
    --background-color--1: #21252c;
    --background-color--2: #282d35;
}

:root {
    --primary-color: #f3a712;
    --text-color: #fff;
    --background-color--1: #08081d;
    --background-color--2: #111132;
}

/* PROJECT PAGE */
h2 {
    margin-bottom: 1rem;
}

section {
    background-color: var(--background-color--1);
}

.container {
    align-items: start;
    width: 100rem;
}

/* SECTION INTRODUCTION */
#section--introduction {
    padding: 0;
    /* background-color: #19666b; */
    background-color: var(--background-color--2);
    color: #fff;
    height: 30rem;
    display: flex;
}

#section--introduction .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.introduction--info-wrapper {
    display: flex;
    flex-direction: column;
}

.project-page-title {
    font-size: 5rem;
}

.introduction--image-wrapper {
    width: 90%;
}

.introduction--image-wrapper img {
    width: 100%;
}

/* SECTION OVERVIEW */
#section--overview {
    padding-bottom: 3rem;
}

.grid--3-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}

.project-stats {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.project-stats h3 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.project-stats ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.8rem;
}

.product-image {
    width: 30rem;
}

.product-image-wrapper {
    display: flex;
}

.product-image-wrapper--left {
    flex-direction: column;
}

/* SECTION INFORMATION */
#section--information {
    padding-top: 3rem;
}

#section--information {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-description {
    font-size: 2rem;
    line-height: 1.5;
}

/* FOOTER */
footer.container {
    align-items: center;
}
