@media (prefers-color-scheme: light) {
    .are-you {
        background-color: var(--pastel-green);
    }
}

@media (prefers-color-scheme: dark) {
    h2 {
        color: var(--white);
    }

    .are-you {
        background-color: var(--bright-green) 40;
    }

    .are-you p,
    .are-you li,
    .are-you h3 {
        color: var(--white);
    }
}

h1 {
    color: var(--white);
}

/* Meet Section */
span {
    color: var(--green);
}

.meet {
    margin-top: 4rem;
    padding: 6rem 6rem 0rem 6rem;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.meet-spark {
    width: 90%;
}

.meet-spark p {
    color: var(--gray);
}

.are-you {
    width: 90%;
    padding: 2rem;
    border-radius: 25px;
}

.are-you h3 {
    margin-bottom: 1rem;
}

.are-you ul {
    padding-left: 2rem;
}

.are-you li {
    list-style: disc;
}

.are-you ul li::marker {
    color: var(--green);
}

.are-you p {
    margin-top: 1rem;
}

.are-you p {
    font-weight: bold;
}

/* Why work at spark section */
.meet-spark h2 {
    text-align: left;
}

.list-div {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 2rem;
    justify-content: space-between;
}

.why-divs {
    width: 100%;
    margin-top: 1rem;
    max-width: calc(25% - 10px);
}

.why-divs p {
    font-weight: bold;
}

.why-divs img {
    width: 2rem;
    height: 2rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Form Section*/
.form {
    margin-top: 0;
}

.resume-div {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 0.5rem;
    padding-left: 1rem;
    min-width: 100%;
}

.resume-div p {
    color: var(--white);
}

.resume-div button {
    color: var(--black);
}

@media (max-width: 1005px) {
    .inputs-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .meet {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

    .list-div {
        width: 100%;
    }

    .meet-spark {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-divs {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: calc(50% - 10px);
    }

    .are-you {
        width: 100%;
    }

    .meet-spark h2 {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .why-divs {
        max-width: calc(100% - 10px);
        margin-top: 2rem;
    }

    .list-div {
        margin-top: 0;
    }
}
