body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --foo-color:#333333;
    --txt-color:#FFFFFF;
    --nav-color:#F3C311;
    --bag-color:#222222;
    --incople-color:#BD3936;
    font-family: monospace;
    background-color: var(--bag-color);
    color: var(--txt-color);
}

/* Header */

.header{
    color: var(--nav-color);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

/* Comentario */
.coment{
    width: 100%;
    height: auto;
    border-bottom: 2px var(--txt-color);
    text-align: center;
    font-size: 12px;
    border-bottom: 1px solid var(--txt-color);
    margin-bottom: 15px;
}
/* Reto Contenedor */
.reto{
    margin: auto;
    min-height: 450px ;
    max-width: 600px;
    background-color: var(--txt-color);
    margin-bottom: 10px;
    color: var(--bag-color);
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}   
/* Reto */
.header-reto{
    text-align: center;
}

.main-reto{
    text-wrap: wrap;
    font-size: 16px;


}

.section-dos img{
    width: 100px;
}

.section-uno{
    text-align: center;
}
 .section-dos{
    display: grid;
    grid-template-columns:200px 1fr;
    align-items: center;
    justify-items: center;

 }

 .article-reto{
    text-wrap: balance;
 }

 .footer-reto{
    text-align: center;
    background: var(--foo-color);
    height: 30px;
 }
 .footer-reto span{
    color: var(--txt-color);
 }
/* footer */

.foo{
    display: flex;
    align-items:center;
    justify-content:space-evenly;
    width: 100%;
    height: 200px;
    background-color: var(--foo-color);
}

span{
    font-size: 16px;
    color:  var(--nav-color);
    padding: 0 10px 0 10px;
}

/* Efectos y animaciones */

.header h1{
    animation: parpadeo 8s ease-in-out infinite;
}

@keyframes parpadeo {
    0%{
        color: var(--nav-color);
    }

    50%{
        color: var(--txt-color);
    }

    100%{
        color: var(--nav-color);  
    }
}


