*{
    box-sizing: border-box;
}

body{
    background-color:darksalmon;
    margin: 0;
}

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

article{
    width: 90%;
    margin: 10px auto;
    border-left: 10px solid rgb(196, 82, 101);
    border-right: 10px double rgb(196, 82, 101);
    padding: 0 5px 0 10px;
}

h1{
    width: 100%;
    background-color: #E08684;
    color: white;
    padding: 5px;
    margin-top: 0;
    font-size: 1.9em;
    text-transform: capitalize;
    font-family: "Anek Telugu", sans-serif;
}

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


section{
    width: 90%;
    border: 5px solid rgb(124, 7, 7);
    margin: 10px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 15px;
    padding-left: 25px;
}

h3{
    font: 1.6;
    color: black;
}

img{
    width: 18%;
}

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

footer{
    width: 100%;
    background-color: rgba(179, 15, 15, 0.808);
    color: white;
    text-align: right;
    font-size: small;
    letter-spacing: 5px;
    border-top: 5px solid white;
}