main div{
    background-color: crimson;
    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    border: 1px solid black;
    margin: 0.5rem;
}

#especial {
    order: 1;
    flex-grow: 2;
    flex-shrink: 3;
}

#maior{
    flex-basis: 200px;
}

main{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: darkkhaki;
    justify-content: space-evenly;
}

#pai {
    display: flex;
}

header{
    background-color: darkslategray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}