body{
    padding: 0;
    margin: 0;
}
*{
    box-sizing: border-box;
}
/* 
....................
typography header
....................

*/
 .container{
max-width: 900px;
margin: 0 auto;
} 
header{
    background-color: whitesmoke;
    color: #0E0E0E;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13.5522px;
    line-height: 108.2%;
    letter-spacing: -0.03em;
     padding: 1em; 
    margin-bottom: 0;
}
/* 
....................
Typography home page
....................
*/
.home-section-one{
    background-image: url("../images/pexels-janko-ferlic-590493.jpg");
    opacity: 1;
    background-size: cover;
    min-height: 30vh;
    padding-top: 10em;
    padding-left: 1em;
    margin-bottom: 1.5em;
}

.home-title{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 5px red;
    margin-top: 0;
    margin-bottom: 0;
}
.home-section-one-p{
    width: 80%;
    color: white;
    text-shadow: 2px 2px 5px red;
    margin-top: 0;
}
.date-home{
    color: white;
    font-size: 0.6rem;
    margin-top: 0;
    margin-bottom: 0;
}

p{    
font-style: normal;
font-size: 1rem;
line-height: 125%;
}

/* 
........................
header layout
........................
*/
ul{
    display: flex;
    list-style: none;
    justify-content: space-between;
    padding: 0; 
}
.header-col-1{
    width: 48%;
}
.header-col-2{
   width: 45%;
   display: flex;
   justify-content: space-between;
}
.home{
    width: 35%;
}
.about{
    width: 60%;
}
/* 
layout home page
*/
img{
    width: 100%;
}
.home-section-one-article{
    width: 70%;
}
.home-section-two p{
    margin-top: 0.5em;
}
.article-home{
    margin-bottom: 1.5em;
}
.date-article{
    margin-top: 0;
    margin-bottom: 0;
}
h2{
 margin-top: 0.5em;
 margin-bottom: 0;
}
.home-section-two{
    width: 90%;
    margin: 0 auto;
}
@media (min-width:550px){
    .home-section-two{
        display: flex;
        justify-content: space-between;
    }
    article{
        width: 30%;  
    }
    img{
        min-height:30vh;
        object-fit: cover;
    }
    .container{
        max-width: 1100px;
    }
    .home-section-one{
        font-size: 2rem;
        padding-top: 7em;
        min-height: 50vh;
    }
}