article section{
    border: 4px solid hsla(200 80% 10% / .9);
    margin: 24px;
    min-height: 200px;
}

body{
    font-size: 1.6em;
    background-color: lightcoral;
}

article{
    border: 4px solid red;
    margin: 8px;
}

section div{
    width: 180px; height: 180px;
    background-color: burlywood;
    border: 2px solid #222;
}

article h2{
    text-align: center;
}

#article1 section div{
    margin: 24px auto;
}

#article2 section {
    position: relative;
    min-height: 232px;
}

#article2 section div {
    position: absolute;
}

#article2 section div:nth-child(1) {
    top: 24px; left: 24px;
}

#article2 section div:nth-child(2) {
    top: 24px; right: 24px;
}

#article3 section{
    overflow: hidden; /*clearfix for floaters*/
}

#article3 section div{
    margin: 24px;
}

#article3 section div:first-child{
    float: left;
}

#article3 section div:last-child{
    float: right;
}

#article4 section div {
    position: absolute;
}

#article4 section{
    position: relative;
}

#article4 div{
    position: absolute;
}

#article4 div:first-child{
    top: 24px; left: 25vw;
}

#article4 div:last-child{
    top: 24px; right: 25vw;
}


#article5 section{
    display: flex; /*makes this a flex parent*/
    justify-content: center;
}

#article5 div{
    margin: 24px;
}

#article6 section{
    text-align: center;
    padding: 24px 0px;
}

#article6 div{
    display: inline-block;
}

#article7 section{
    display: flex;
    justify-content: space-evenly;
    padding: 24px 0;
}

#article7 div:nth-child(3){
    background-image: url(../images/steam_profile.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#article7 div:nth-child(3) h3{
    background-color: orange;
    font-size: 50%;
    text-align: center;
    width: 120%;
    margin: 2px auto;
    transform: translateX(10%)
                translateY(10px)
                rotate(20deg);

}