/* STYLE GENERAL DU SITE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #f4f4f4;
    padding-top: 100px;
}

/* MENU DE NAVIGATION */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #00205b;
    z-index: 1000;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

/* Logo FIFA + Nom du site */
.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 15px;
}

.logo h2{
    font-size: 22px;
    color: #ffd700;
}

/* Les liens du menu */
.menu{
    display: flex;
    list-style: none;
}

.menu li{
    margin-left: 13px;
    list-style-type: none;
}

.menu li a{
    text-decoration: none;
    color: #ffd700;
    font-size: 16px;
    font-weight: bold;
    border-radius: 40px;
    padding: 5px 10px;
    transition: 150ms;
}

.menu li a:hover{
    transition: 0.3s;
    background: white;
}

/* EQUIPES */
.equipes{
    text-align:center;
    background: #d4c464;
    color:white;
    padding: 30px;
    margin: 30px;
    border-radius: 500rem;
}

.equipes h2{
    font-size:40px;
    margin-bottom:15px;
}

.confederation{
    width:80%;
    margin:40px auto;
    background:white;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    padding:30px;
}

.confederation h2{
    color:#00205b;
    margin-bottom:20px;
}

.confederation ul{
    list-style:none;
}

.confederation li{
    margin:15px 0;
}

.confederation a{
    text-decoration:none;
    color:#222;
    font-size:20px;
    transition:.3s;
}

.confederation a:hover{
    color:red;
    padding-left:10px;
}

.confederation{
    width: 300px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-align: center;
    
}

.conf{
    display: flex;
    gap: 10px;
    margin: 13px;
}

/* FOOTER */
footer{
    background-color: #00205b;
    color: white;
    padding: 40px 20px;
}

.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-box{
    width: 220px;
    margin: 15px;
}

.footer-box h3{
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-box p{
    margin: 8px 0;
    cursor: pointer;
}

.footer-box p:hover{
    color: #ffd700;
}

/* Réseaux sociaux */
.social a{
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.social a:hover{
    color: #ffd700;
}

/* Copyright */
.copyright{
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid white;
}

/* RESPONSIVE TELEPHONE */
@media(max-width:900px){
    .navbar{
        flex-direction: column;
    }

    .menu{
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .menu li{
        margin: 10px;
    }

    .footer-container{
        flex-direction: column;
        align-items: center;
    }
}