main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    color: var(--black);
    text-wrap: pretty;
}

h1 {
    font-size: 2.5rem;
    margin: 0 1rem;
}

h2 {
    margin-bottom: 1rem;
}

hr {
    width: 100%;
    border: none;
    height: 4px;
    background: linear-gradient(to right, var(--blue), var(--green));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/** primera section */
.title {
    width: min(1500px, 95%);
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    padding: 1rem 0rem;
    border-radius: 16px;
}

.highlight {
    --green-darker: color-mix(in hsl, var(--green), var(--black) 25%);

    padding: 1rem;
    margin: 1rem;
    color: var(--black);
    font-weight: 500;
    border-radius: 0px 5px 5px 0px;
    border-left: 5px solid;
    border-image-source: linear-gradient(var(--primary), var(--green-darker));
    border-image-slice: 1;
    background-color: var(--green);
}

.sections {
    margin: 1rem;

    & ul {
        padding: 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    & li {
        padding: 1rem;
        border-radius: 14px;
        box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.2);
    }
}