/*Root - flags*/

body {
    margin: 0;
}

.root-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #232f3e;
    padding-top: 11px;
    padding-bottom: 6px;
    width: 100%;
}
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 80px;
}

.flag {
   display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin: 20px;
    padding-right: 15px;
    padding-left: 15px;
    color: #6D7474;
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    text-transform: uppercase; 
}

.footer_container {
    display: flex;
    justify-content: center;
    width: auto;
    height: 50px;
    background-color: #232f3e;
    align-items: center;
    color: #fff;
    font-family: 'Maven Pro', sans-serif;
}

.flag a img {
    max-width: 200px;
    width: 100%;
}

.flag h4 {
    margin: 10px;
}

@media only screen and (max-width: 566px) {
    .flag a img {
        width: 100px;
        height: auto;
    }
    .flag h4 {
        font-size: 10px;
    }
    }