/*Reset*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Avenir", sans-serif;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-around;
}

/* Link */
a:link {
  text-decoration: none;
}

#Logo {
  display: flex;
  justify-content: center;
}

#iconeCliquable {
  display: flex;
  justify-content: space-around;
  text-align: center;

  img {
    width: 3rem;
    height: 3rem;
  }
}

#background {
  background-image: url(./assets/CDMRugby_motif_8_RGB_OK.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 23rem;
}

button {
  border-radius: 1rem;
  border: 1px solid black;
  height: 3rem;
  text-decoration: none;
  font-size: larger;
  color: white;
  background-color: #007dee;
  margin: 0.5rem;
  width: 21rem;
}

#buttonList {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  background: #d0d0d0;
  position: sticky;
  top: 0;
  width: 100%;
}

h1 {
  color: #007dee;
  text-align: center;
  margin-bottom: 1rem;
}

p {
  color: #007dee;
  text-align: center;
  font-weight: bold;
  background: #d0d0d0;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/*@media screen and (min-width: 426px) {
}

@media screen and (min-width: 1024px) {
}*/
