body, html {
  margin: 0;
} 

/* 100dvh pour que le footer soit en bas, meme sur mobile */
body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
} 

html {
  font-family: "Tomorrow";
}

#background {
  position: fixed;
  width: 100% ;
  height: 100%;
  object-fit: cover;
  z-index: -2; 
}

.header-bar {
  display: flex; 
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
  background-color: black;
  opacity: 0.8;
}

.title {
  color: aliceblue;
  font-size: 4vw;
  flex-shrink: 1;
}

/*height 100% pour avoir la hauteur du header-bar */
.logo {
  padding-left: 30px;
  height: 100%;
}

/*height 100% pour limiter l'image au size de .logo */
.logo img{
  opacity: 0.8;
  height: 100%; 
}


/*height 100% pour avoir la hauteur du header-bar */
.hamburger {
  height: 100%;
  padding-right: 30px;
}

/*height 100% pour limiter le lien au size de .hamburger */
.hamburger a {
  height: 100%;
}

/*height 100% pour limiter l'image au size de .hamburger a */
.hamburger img{
  height: 100%;
}

.links {
  display: flex; 
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

/* sera affiche par le js */
.link {
  display: none;
  padding: 30px;
  /*test:*/
  margin: 30px;
  text-align: center;
  width: 90%;
  font-size: 4vw;
}

a:link, a:visited {
  color: red;
  text-decoration: none;
}

a:hover {
  color: yellow;
  text-decoration: underline;
}

a:active {
  color: purple;
  text-decoration: none;
}

/*flex 1 , comme ca le div grandit et le footer va en bas */
.mid {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: black;
}

.mid h1 {
  text-align: center;
  font-size: 2.75em;
}

.mid img {
  padding: 1em;
  display: block;
  width: 95%;
  margin: auto;
}

.mid p {
  margin-left: 20px;
}

.mid h3 {
  margin-left: 10px;
}
.lien_regle {
  padding: 30px;
  font-size: 3em;
}

.classement th {
  border: 1px solid black;
  padding: 3px;
}

.classement table {
  border-spacing: 0px;
}

.classement td {
  text-align: center;
}


tbody > tr:nth-child(even) {
  background-color: #b9bdc4;
}

tbody > tr:hover {
  background-color: #86b1f7;
}

.contact h1 {
  text-align: center;
}

.contact p {
  margin-left: 20px;
}

p.info {
  margin-left: 50px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  width: 100%;
  height: 3%;
  font-size: 10px;
  flex-shrink: 0;
  color: aliceblue;
}
