/*ESTILOS CSS DEL EJERCICIO 045*/

/*ESTILOS EN SECCIONES PRINCIPALES*/
body{
    margin: 0;
    padding: 0;
    background-color: #333;
}
header{
    background-color: #360000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1{
    margin: 0;
}
nav ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav li{
    display: inline;
    margin-right: 20px;
}
nav a{
    text-decoration: none;
    color: #fff
}
/*ESTILOS EN SECCIONES PRINCIPALES*/

/*ESTILOS EN ID*/
#banner{
    background-image: url(Imagenes/Banner_blog.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}
#banner h2{
    font-size: 40px;
    margin-bottom: 30px;
}
#entradas{
    padding: 20px;
}
#entradas article{
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}
#entradas img{
    width: 70%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}
#autor{
    background-color: #f2f2f2;
    padding: 20px;
    clear: both;
    display: table;
    padding-bottom: 40px;
    margin-bottom: 20px;
}
#autor img{
    float: left;
    width: 30%;
    height: auto;
    border-radius: 50%;
    margin-right: 30px;
}
#polaroids{
    clear: both;
    display: table;
}
#polaroids h3{
    color: white;
    padding: 25px;
}
#polaroids article{
    width: 41%;
    background-color: white;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.2);
    float: left;
    border: 5px solid white;
    margin: 3%;
}
#polaroids img{
    width: 100%;
    height: auto;
}
#polaroids p{
    text-align: center;
    padding: 5px 20px;
}
/*ESTILOS EN ID*/

/*ESTILOS EN CLASS*/
/*ESTILOS EN CLASS*/

/*ESTILOS EN FOOTER*/
footer{
    background-color: #2b2b2b;
    text-align: center;
    padding: 30px 0;
    color: #fff; 
}
/*ESTILOS EN FOOTER*/