*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}



/*Portada*/



.container-portada{
   /* top:45px;*/
    display: flex;
    width: 100%;
    height: 400px;
    position: relative;
    background-image: url(../image/informatica.jpg);
    background-size: 100%;
    animation: movimiento 20s infinite linear alternate;  
}

@keyframes movimiento{
    from{
        background-position: bottom left;
    }to{
        background-position: top right;
    }
}


.capa-gradient{
    width: 100%;
    height: 100%;
    position: absolute;
    background: -webkit-linear-gradient(left, black, #0672d0);
    opacity: 0.5;
}

.container-details{
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: auto;
}


.details{
    width: 100%;
    max-width: 720px;
    position: relative;
    top: 20px;
    color: white;

}

.details h1{
    font-size: 40px;
    font-weight: 100;
    margin-left: 10px;
    letter-spacing: 0.2em;
    /*font-size: 50px;
    font-weight: 100;
    margin-left: 10px;
    text-align: justify;
    letter-spacing: 0.2em;
    color: blue;
    text-shadow: -2px 0px 8px #fff;*/
}


.details h2{
    letter-spacing: 0.2em;
    margin-left: 10px;
    font-weight: 100;
   /* color: orange;
    text-shadow: -2px 0px 1px #fff;
    text-align: justify;
    letter-spacing: 0.2em;
    margin-left: 10px*/
}

.details p{
    margin-top: 10px;
    font-size: 20px;
    font-weight: 100;
    margin-left: 10px;

}



/*Articulo*/

main{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

article{
    width: 100%;
    max-width: 720px;
    margin-top: 20px;
    padding-right: 20px;
    margin: auto;
}

article h1{
        font-size: 40px;
    font-weight: 100;
    margin-left: 10px;

    text-align: center;
    color: #6a6a6a;
    margin-top: 50px;
    font-family: 'Roboto', sans-serif;
}

article hr{
    max-width: 1200px;
    height: 4px;
    border-style: none;
    background: -webkit-linear-gradient(left, #FF9800, #0672d0);
    margin-top: 10px;
    margin-left: 10px;
}

article p{
    font-size: 20px;
    margin-top: 20px;
    font-weight: 100;
    margin-left: 10px;
    text-align: justify;
}
article ul{
       margin-left: 70px;
}


@media screen and (max-width: 500px){
    .details p{
        font-size: 18px;
    }
}




















