/* 
First flexbox is on the ul
Second flexbox is on the section
Other styles & colors just need to be close. 
 */

ul.flex{
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    flex-direction: row;
    justify-content: space-around;

}

li a{
    color: orange;
    font-family: Arial, sans-serif;
}
section.flex{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    margin: 10px;
    padding: 10px;
    height: 100px;
    

}

section > * {
    margin: 10px;
    padding: 10px;
    background-color: rgb(111, 111, 111);
    font-family: Arial, sans-serif;
    color: darkblue;
    width: 50%;
    height: 80%;
    display: flex;
    border-radius: 5px;
}

p{
    font-style: italic;
    font-weight: bold;
    font-size: 100%;
    color: rgb(255, 255, 255);
    text-align: center;

   
}

