*{
    margin: 0; padding: 0; border 0; box-sizing: border-box;
}

body {
    background-color: lavender;
}

h1 {
    text-align: center;
    margin: 8px;
    text-transform: uppercase;
    border-bottom: 2px solid #222;
    padding-bottom: 8px;
}

section {
    border: 4px solid white;
    width: 80%;
    margin: 20px auto;
    min-height: 200px;
    border-radius: 8px;
    transform: rotate(180deg);
}

h2 {
    color:plum; margin: 8px;
    font-family: Verdana;
}

.three_boxes_container {
    margin: 16px;
    min-height: 180px;
    background-color: hsl(200 50% 100% / .8);
    border-radius: 8px;
    padding: 12px 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.three_boxes_container > div {
    background-color: hsl(200 50% 60% /1);
    min-width: 200px;
    height: 150px;
    margin: 12px;
    border-radius: 8px;
    flex-grow: 1;
    position: relative;
}

.disc {
    background-color: red;
    width: 50px; height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    position: absolute;
    bottom: -25px;
    right: 30px;

}

.five_boxes_container {
    background-color:#FFC;
    min-height: 180px;
    text-align: center;
    padding: 15px;
    margin: 8px;
}

.five_boxes_container > div {
    width: 120px; height: 200px;
    background-color: greenyellow;
    display: inline-block;
    transform: skew(-5deg) rotate(-5deg);
    margin: 15px 8px;
}

.five_boxes_container > div:nth-child(4) {
    background-color:plum;
}



