section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 25px;
}

@media (max-width: 1000px) {
  section {
    grid-template-columns: auto;
  }
}

article {
  background-color: #383C4B;
  color: #EDEEF0;
  border-radius: 5px;
  padding: 10px;
  max-width: 100%;
}

article > img {
  max-width: 100%;
  float: left;
}

article > .place {
  width: 40px;
  height: 40px;
  float: none;
  display: block;
  margin: 0px auto;
}

article h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

article p {
  text-align: justify;
}

.banner {
  margin-top: 10px;
  max-width: 60%;
  max-height: 60%;
  display:block;
  margin-left:auto;
  margin-right:auto;
}

.days {
  display: flex;
  justify-content: center; 
  gap: 10px;
  width: 100%;
}

.day {
  background-color: rgba(0, 0, 0, 0.4);
  color: #EDEEF0;
  border-radius: 5px;
  width: 100px;
  align-self: center;
  text-align: center;
  padding: 10px 0px 10px 0px;
  font-size: 16px;
}

.day:hover {
  cursor: pointer;
  background-color: #383C4B;
}

.day.active {
  background-color: #383C4B;
}

section.resultats article {
  display: grid;
  align-content: center;
  background-color: transparent;
}

section.equipes {
  display: flex;
  flex-wrap: wrap;
}

section.equipes article {
  width: 300px;
}

section.equipes article a {
  color: #EDEEF0;
}

section.equipes article h2 {
  text-transform: uppercase;
  font-size: 20px;
  margin-left: 10px;
}

section.equipes article h2 img {
  width: 50px;
  height: 50px;
}

article.winners p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

article.winners img {
  max-width: 100%;
  float: left;
  width: 30px;
  height: 30px;
}

section.documentation {
  display: block;
  /*
  background-color: #020048;
  background-color: #4632ff58;
  color: #f1f1f1;
  border: #1bf5ff 1px solid;
  */
  background-color: #383C4B;
  color: #EDEEF0;
  margin: 0 10px 30px;
  padding: 15px;
  text-align: justify;
}

section.documentation h3 {
  text-align: left;
}

section.documentation img {
    display:block;
    margin-left:auto;
    margin-right:auto;
    padding: 10px 0px;
    max-width: 100%;
}

section.documentation a {
  /*
    color: #1bf5ff;
    */
  color: #EDEEF0;
}
