*{
    box-sizing: border-box;
}
body{
    background-color: salmon;
    margin: 0;
}
header{
    background-size: 100%;
    background-color: crimson;
    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(151,39,39);
    color: white;
    font-size: 1,2em;
    border-top: 15px solid white;
    text-align: right;
}
article{
    width: 90%;
    margin: 30px auto;
    padding:0 10px;
    border-left: 10px solid rgb(223, 96, 96);
    border-right: 10px solid rgb(223, 96, 96);
}
h1{
    width: 100%;
    background-color: rgb(223, 96, 96);
    color: white;
    padding: 5px;
    margin-top: 0;
    text-transform: capitalize;
    font-family: com;

}
p{

    text-indent: 50px;
    font-size: 1.3em;
}
section{
    flex-wrap: nowrap;
    width: 90%;
    border: 5px brown solid;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
img{

    width: 25%;
}
h3{
    font-size: 1.8em;
}
