*{
	box-sizing: border-box;
}
html{
    border: 10px solid rgb(39, 51, 96);
    min-height: 100%;
}

body{
    background-color: turquoise;
    margin: 0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
header{
    width: 100%;
    color: white;
    font-size: 1.5em;
    background-color: black;
    outline: 10px dotted red;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

div:first-of-type{
    text-align: center;
    font-size: 4em;
}
div{
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 2em;
}
p:first-of-type{
    width: 100%;
    justify-content: left;
    color: white;
    font-size: 1.5em;
}
p{
    width: 100%;
}

article{
    width: 100%;
    background-color: gray;
    border: 4px solid lightslategray;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    padding: 10px 10px 20px 10px;
    margin: 10px;
}

article:nth-of-type(2){
    background-color: rgb(156, 89, 89);
    border: 3px dotted white;
}
article:nth-of-type(3){
    background-color: purple;
    border: 5px groove plum;
}
article:nth-of-type(4){
    background-color: rgb(153, 111, 60);
    border: 4px groove brown;
}

i.fa{
    width: 100%;
    font-size: 3em;
}

section{
    margin:auto auto -10px -10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer{
    width: 100%;
}