*{
	box-sizing: border-box;
}

body{
    width: 90%;
    background-image: url(../img/borde.jpeg);
    background-repeat:repeat-y;
    background-size: 2%;
    background-position: 0%;
    background-color: rgb(0, 94, 218);
    padding: 30px;
    margin: auto;
}

header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border:3px solid black;
    border-radius: 20px;
    color: white;
    font-size: 2em;
}
h2:nth-of-type(2){
    color: red;
}

main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/*Artículos*/
article{
    width: 20%;
    background-color: turquoise;
    border: 5px solid turquoise;
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
    justify-content: center;
    text-align: justify;
}
article:nth-of-type(1){
    background-color: peru;
    border-color: red;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
article:nth-of-type(2){
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
article:nth-of-type(3){
    background-color: yellow;
    border:8px double green;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
article:nth-of-type(4){
    width: 100%;
    border:10px solid red;
    display: flex;
    flex: wrap;
    flex-direction: row-reverse;
}
article:nth-of-type(5){
    color: red;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-around;
    border: 10px groove grey;

}

/*Imágenes*/
article:nth-of-type(2) > img{
    width: 230px;
    height: 260px;
    padding: 5px;
}
article:nth-of-type(4) > img{
    width: 30%;
    border-radius: 100%;
    padding: 5px;
}
article:nth-of-type(5) > img{
    width: 20%;
    padding: 5px;
}

/*Títulos de artículos*/
article>h1{
    color: blue;
}
h1{
    width: 100%;
    text-align: center;
    color: purple;
}
article:nth-of-type(5)>h1{
    font-size: 4em;
    color: red;
}

/*Pie de página*/
footer{
    padding-right: 10px;
    border-top: 30px solid white;
    background-color: aqua;
    font-size: 1.5em;
    display:flex;
    justify-content: end;
}