*{
    box-sizing: border-box;
}

body{
    background-color: rgb(173, 148, 255);
    margin: 0;
}

header{
    width: 100%;
    background-color: darkred;
    color: white;
    text-align: center;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 6px;
    border-bottom: 8px solid white;
}

footer{
    width: 100%;
    background-color: darkred;
    color: white;
    text-align: right;
    font-size: 1em;
    border-top: 8px solid white;
}

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

h1{
    width: 100%;
    background-color: lightcoral;
    color: white;
    padding: 5px;
    margin-top: 0;
    font-size: xx-large;
    text-transform: capitalize;
}

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

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

img{
    width: 20%;
    background-color: oldlace;
}

h3{
    font-size: x-large;
}

article:nth-of-type(3){
    background-color: blue;
}

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: 20%;
}