.baner {
  margin-top: 5rem;
  width: 100%;
  height: 400px;
}
.baner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
}
.Fan {
  /* margin-top: 6rem; */
  padding: 1rem 4rem;
}
.Fan .titre {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px #f4f4f4 solid;
}

/* Pronostic */
.fanzon .pronostic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 10px;
}
.prono {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px #f4f4f4f4 solid;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 1px 0 rgb(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.prono details summary {
  background: linear-gradient(#2c00f1, #130358);
  text-align: center;
  padding: 10px;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
}
.prono details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.prono details div label {
  font-size: 18px;
}
.prono details button {
  width: 100%;
  margin-top: 10px;
  background: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 16px;
  color: #020d2e;
  transition: 0.3s;
}
.prono details button:hover {
  background: #023094;
  color: #fff;
  border: none;
}
.pronostic .prono .equipe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pronostic .prono .equipe .pays {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pronostic .prono .equipe .pays img {
  margin-bottom: 10px;
  border-radius: 10px;
  height: 90px;
  width: 100px;
}
.pronostic .prono .equipe .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pronostic .prono .equipe .info p {
  font-size: 15px;
}
.pronostic .prono .equipe .info h1 {
  font-size: 40px;
}
/* leaderboard */
.fanzon .leaderboard {
  width: 100%;
}
.leaderboard .leader {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  margin: 2rem 0;
}
.leaderboard .leader thead th {
  background: linear-gradient(#2c00f1, #130358);
  color: #fff;
}

.leaderboard .leader th,
.leader td {
  padding: 10px;
  border-bottom: 1px #f4f4f4 solid;
}

/*----------------------------------------------------
 Responsive mobile   
 *----------------------------------------------------*/

@media screen and (max-width: 700px) {
  .baner {
    margin-top: 5rem;
    width: 100%;
    height: 60%;
  }
  .baner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 80%;
  }
  .Fan {
    padding: 10px;
  }
  .Fan .titre {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px #f4f4f4 solid;
  }
  .fanzon {
    padding: 0;
  }
  /* Pronostic */
  .fanzon .pronostic {
    grid-template-columns: 1fr;
  }

  .prono {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px #f4f4f4f4 solid;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 1px 0 rgb(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
  }

  .prono details summary {
    background: linear-gradient(#2c00f1, #130358);
    text-align: center;
    padding: 10px;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  .prono details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .prono details div label {
    font-size: 16px;
  }
  .prono details button {
    width: 100%;
    margin-top: 10px;
    background: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 16px;
    color: #020d2e;
    transition: 0.3s;
  }
  .prono details button:hover {
    background: #023094;
    color: #fff;
    border: none;
  }
  .pronostic .prono .equipe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .pronostic .prono .equipe .pays {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pronostic .prono .equipe .pays img {
    margin-bottom: 10px;
    border-radius: 10px;
    height: 70px;
    width: 80px;
  }
  .pronostic .prono .equipe .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .pronostic .prono .equipe .info p {
    font-size: 12px;
  }
  .pronostic .prono .equipe .info h1 {
    font-size: 40px;
  }
  /* leaderboard */
  .fanzon .leaderboard {
    width: 100%;
    margin-bottom: 20px;
  }
  .leaderboard .leader {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  .leaderboard .leader thead th {
    background: linear-gradient(#2c00f1, #130358);
    color: #fff;
    font-size: 13px;
  }

  .leaderboard .leader th,
  .leader td {
    padding: 5px;
    border-bottom: 1px #f4f4f4 solid;
    font-size: 12px;
  }
}
