*{
    box-sizing: border-box;
}





body{
    background-color: rosybrown;
    margin: 0%;
}

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

}
footer{
     width: 100%;
    background-color: palevioletred;
    color: white;
    text-align: right;
    font-size: 1.2em;

    border-bottom: 15px solid white;

}

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


}

h1{
    width: 100%;
    background-color: pink ;
    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 brown;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px;


}
img{
    width: 25%;
}
h3{
    font-size: 1.6em;
}
footer > p{
    margin: 0;
    padding-right: 20px;
    font-size: 1 em;
}
footer >p:last-of-type{
    color: yellow;
}

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