/*Sección Hobbies*/

section.hobbies{
    margin: 64px 100px;
    background-color: yellowgreen;
}

/*titulo de la seccion*/
section.hobbies h3.hobbies__title   {
    font-size: 32px;
    text-align: center;
}

/*Alineación de iconos*/
section.hobbies div.hobbies__line   {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

/*cajas Hobbies*/
section.hobbies div.hobbies__box    {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    background-color: var(--color-cajas);
    margin: 22px 15px 22px 0px;
    width: 150px;
    height: 160px;
}

section.hobbies div.hobbies__box ul{
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-titulos);
}