*{
    box-sizing: border-box;
}


body{
    background-color: rgb(214, 152, 152);
    margin: 0;
}

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

footer{
    width: 100%;
    background-color: rgb(123, 44, 61);
    color: white;
    text-align: right;
    font-size: 1.2em;
    border-top: 15px solid white;
}

article{
    width: 90%;
    margin: 30px auto;
    border-left: 10px solid rgb(142, 54, 69);
    border-right: 10px double rgb(142, 54, 69);
    padding:0 10px ;
}

h1{
    width: 100%;
    background-color: rgb(142, 54, 69);
    color: white;
    padding: 5px;
    margin-top: 0px;
    text-transform: capitalize;
}

p{
    text-indent: 50px;
    font-size: 1.3em;
}
section{
    width: 90%;
    margin: 10px auto;
    border: 5px solid rgb(123, 44, 61);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px;
}

img{
    width: 25%;
    background-color: white;
}

h2{
    font-size: 1.6em;
}

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