@font-face {
    font-family: 'Rubik';
    src: url('../big noodle/big_noodle_titling.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: rgb(0, 0, 0);
    font-family: Rubik;
    font-weight: bold;
    height: 100vh;
    margin: 0;
}

.top-info {
    position: fixed;
    top: 6px;
    left: 50%; /* Centrer l'élément par rapport à la fenêtre */
    transform: translateX(-50%); /* Déplacer l'élément de moitié de sa largeur pour centrer */
    background-color: #00CCCC;
    width: 200px; /* Largeur fixe pour le conteneur */
    height: 60px;
    font-size: 16px;
    color: black;
    display: flex; /* Utiliser flexbox pour l'alignement */
    align-items: center; /* Centrer verticalement */
    justify-content: space-between; /* Espacer les éléments entre eux */
    padding: 0 5px; /* Ajouter un peu de remplissage sur les côtés */
}

.map-info {
    text-align: center; /* Centrer le texte */
    flex-grow: 1; /* Permettre à cet élément de prendre de l'espace */
}

.logotournament {
    height: 50px;
    width: auto;
    margin-right: 10px; /* Espace entre le logo du tournoi et le texte */
}

.logosponsor {
    height: 40px;
    width: auto;
    margin-left: 10px; /* Espace entre le texte et le logo des sponsors */
}

.teams {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.team-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 516px;
    height: 50px;
    padding: 5px;
}

.team-left {
    position: absolute;
    top: 50px;
    left: 42px;
    background-color: #27AAE1;
}
.team-right {
    position: absolute;
    top: 50px;
    right: 42px;
    background-color: #ff3f65;
}

.team-logo {
width: 50px;
height: 50px;
background-color: transparent;
background-size: contain; /* Adapte l'image tout en maintenant ses proportions */
background-position: center;
background-repeat: no-repeat;
margin: 5px;
}

.team-name {
    color: black;
    font-size: 25px;
    text-align: center;
    flex-grow: 1;
    text-transform: uppercase;
}

.team-score {
    color: black;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
