@charset "UTF-8";
/*4 personnalisations des variables*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f8f9fa;
}

header {
  text-align: center;
  background-color: #1c1c1c;
  color: #f8f9fa;
  padding: 10px 0;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  margin-bottom: 100px;
}

/*animation css 1*/
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer-texte {
  display: inline-block;
  transition: transform 1s ease;
  transform-origin: center;
  cursor: pointer;
  color: white;
}

/*animation css 2*/
.footer-texte:hover {
  transform: rotateX(360deg);
}

#clubSelector {
  margin-bottom: 20px;
}

/* responsive pour téléphones */
@media (max-width: 768px) {
  header {
    padding: 8px 0;
  }
  header a {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  .card {
    margin-bottom: 60px;
  }
  #clubSelector {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=styles.css.map */