*{
    margin: 0;
    padding: 0; /*nope*/
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
}
p{
    margin-bottom: 0; /*hauteur interligne*/
}

body{
    background-color: #026272;
    background: linear-gradient(180deg, #0D2C6C   0%, #026272 100%)no-repeat center center fixed;
}
.header{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 90%; /*nope*/
    margin: 0 auto;
    padding-bottom: 20px; /*nope*/
}

.menu{flex-direction: row;
    height: 80px; /*menu*/
}
.menu a{
    color: #fff;
}
.menu-span{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 0 10px;
}
.language-container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 80px; /*hauteur X des drapeaux langages*/
}
.language-ico{
    width: 30px;/*grosseur des drapeaux*/
    transition: 300ms all;    
}
.language-ico:hover{
    transform: scale(1.2);
}
.bg-menu{
    background-color: rgba(255, 255, 255, 0.6);
    
}
.brand{
    color: #fff;    
}

.brand p{
    margin: 0px;
    font-size: 12px;
}

.logo{
    text-transform: uppercase;
    font-size: 48px; 
    padding-top: 15px;
    line-height: 3rem; 
    margin: 0; 
    text-shadow: 0 1px 2px #222;
}
.title{
    font-size: 42px;
    color: #fff;
    text-shadow: 0 1px 2px #222;
}
.title-p{
    font-size: 32px;
    line-height: 32px;
    margin: 0;
    padding: 0;
    color: #fff;
    text-shadow: 0 1px 2px #222;
}
.table-box{
    display: flex;
    flex-direction: column;
    justify-content: center;  
    background-color: rgba(255, 255, 255, 0.6);           
    border-radius: 10px; /*courbure rectangle*/
    padding: 15px; /*a l interieur du rectangle*/
    margin: 0 auto; /* pour centrer les rectangles */
    margin-bottom: 50px; /*nope*/
}

.footer{
    height: 15px; /*nope*/
}



/* teams */
.club-title{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.img-club{
    max-width: 180px;
    margin-bottom: 20px;
}
.img-club img{
    max-width: 100%;
}
.flags-cell {
    width: 50px; /*nope*/ 
    margin-left: 5px; /*nope*/
}

/* live news */
.paragraph-news{
    text-align: justify;
}

/* gold silver */

.vertical-text {
    writing-mode: vertical-lr;
    text-orientation: sideways;
    text-align: end; 
}
.vertical-text span{
   margin-bottom: 10px; 
}
.vertical-img {
    transform: rotate(90deg);
    margin-bottom: 5px;
    
}

/* Knock Out */
.btn-qf {
    width: 20%;
    margin: 5px;
}
.button-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* qualification */
.quali-cell {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;   
    width: 100%;
}
.finale {
    margin: 0 auto;
}


/* responsive */

@media screen and (max-width: 992px){
    .header{
        justify-content: space-around;
    }
    .btn-menu{
        width: 100px;
    }
    .language-ico {        
        margin: 5px;
    }
    .navMenu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;        
        text-align: center;
        margin: 10px 0;

    }
    .bg-list{
        background-color: rgba(5, 148, 214, 0.849);
        padding: 15px;
        margin: 10px 0;
    }
    .club-title {
        width: 80%;
        justify-content: center;
        margin: 0 auto;
    }
    .title{        
        margin-left: 10px;        
    } 
    
    
}
@media screen and (max-width: 500px){
    .header{
        flex-direction: column;
        align-items: center;
    }
    .navMenu{
        margin: 0 auto;
    }
    .table-box{
        width: 100%;
        
        padding: 0 15px;
    }
    .title{        
        font-size: 32px;        
    } 
    .title-p{        
        font-size: 25px;        
    }
}