@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* Colors palette */
:root {
    --orange: #ef8354;
    --grey: #bfc0c0;
    --white: #ffffff;
    --black: #2d3142;
    }

    body {
        font-family: "Nunito Sans", sans-serif;
        width: 100%;
        min-height: 100vh;
        color: var(--black);
    }   
    

    article p {
        color: var(--black);
        font-size: 20px;
        margin: 2rem 5rem;
    }

    h1 {
        font-size: 32px;
        font-weight: 700;
        color: var(--white);
    }

    
    h2.hero {
        font-size: 32px;
        font-weight: 700;
        color: var(--white);
    }

    h2 {
        font-size: 26px;
        font-weight: 700;
        color: var(--orange);
    }

    iframe {
        height: 480px;
        width: 100%;
    }

    section.hero {
        display: flex;
        flex-direction: column;
        background-color: var(--orange);
        padding: 2rem;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .hero iframe {
        border-radius: 14px;
    }
    section.Brief h2 {
        display: flex;
        flex-direction: column;
        background-color: var(--black);
        padding: 2rem;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    article.personas {
        display: flex;
    }

    div.article  {
        text-align: center;
        margin-bottom: 2rem;
    }

    img.persona {
        width: 250px;
        height: 250px;
        border-radius: 100%;
    }

    img.jpg {
        width: 100%;
        border-radius: 20px;
    }

   div.Lista ul, li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 50px;
    
   }