body{
    background-color: #25BAA4;
}
a{
    color: white;
    width: 100%;
}

header{
    background-color: black;
    outline: 10px dotted red;
    height: 100px;
    flex-wrap: nowrap;
    display: flex;
    font-size: 5em;
    text-align: center;
}
h1{
    font-size: 5em;
    text-align: center;
    letter-spacing: 12px;
}
h2{
    width: 100%;
    text-align: left;
    color: white;
}
i{
    font-size: 5em;
}

h3{
    text-align: center;
    font-size: 2.5em;
    letter-spacing: 12px;
}
article{
    width: 95%;
    margin: 20px auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

section{
    display: flex;
    flex-wrap: nowrap;
}
article:nth-of-type(1){
    background-color: #808080;
    border: 4px solid #A9A9A9;
    }
article:first-of-type > section{
    display: flex;
    flex-wrap: wrap;
}
article:nth-of-type(2){
    background-color: #825959;
    border: 4px dotted white;
    }
article:nth-of-type(3){
    background-color: #800080;
    border: 4px groove #310056;
    }

article:nth-of-type(4){
    background-color: #827159;
    border: 4px inset #481616;
    }
p{
    padding: 10px;
}