*{
    box-sizing: border-box;
}


body{
    background-color: rgb(248, 185, 185);
    margin: 0;
}

header{
    width: 100%;
    background-color: rgb(133, 0, 0);
    color: white;
    text-align: center;
    font-size: 4em;
    text-transform: uppercase;
    letter-spacing: 5px;
    border-bottom: 10px solid white;
}

footer{
    width: 100%;
    background-color: rgb(133, 0, 0);
    color: white;
    text-align: right;
    font-size: 1.2em;
    border-top: 10px solid white;
}

article{
    width: 90%;
    margin: 30px auto;
    border-left: 8px solid rgb(197, 93, 98);
    border-right: 10px double rgb(197, 93, 98);
    padding: 0 10px;
}

h1{
    width: 100%;
    background-color: rgb(197, 93, 98);
    color: white;
    padding: 5px;
    margin-top: 0;
    text-transform: capitalize;
    letter-spacing: 2px;
}

p{
    text-indent: 50px;
    font-size: 1.3em;
}

section{
    width: 90%;
    border: 5px solid brown;
    margin: 10px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

img{
    width: 25%;
    background-color: white;
    margin: 15px 10px
}

h3{
    font: 2em;
    margin-left: 10px;
}

/*
article:nth-child(4){
    background-color: yellow
}
*/

footer > p{
    margin: 0;
    padding-right: 20px;
    font-size: 1em;
}

/*
footer > p:last-of-type{
    color: yellow;
}

img [alt="logo"]{
    border:5px groove orange;
    background-color: pink
    padding: 20px;
    border-radius: 50px;
}

*/