*{
    box-sizing: border-box;
}

body{
    background-color: #f4d6d4;
    margin: 0;
}

header{
    width: 100%;
    background-color: #a32a28;
    color: white;
    text-align: center;
    font-size: 4em;
    text-transform: uppercase;
    letter-spacing: 5px;
    border-bottom: 15px solid white;
}

footer{
    width: 100%;
    background-color: #a32a28;
    color: white;
    text-align: right;
    font-size: 1.2em;
    border-top: 15px solid white;
}

article{
    width: 90%;
    margin: 30px auto;
    border-left: 10px solid #e08684;
    border-right: 10px double #e08684;
    padding: 0 10px;
}

h1{
    width: 100%;
    background-color: #e08684;
    color: white;
    padding: 5px;
    margin-top: 0;
    text-transform: capitalize;
}

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

section{
    width: 90%;
    margin: 10px auto;
    border: 5px solid #a32a28;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px;
}

img{
    width: 20%;
}

h3{
    font-size: 1.6em;
}

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