/* style.css */

.boites-lecons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.boite {
  flex: 1 1 300px;
  border: 2px solid #007ACC;
  border-radius: 10px;
  background-color: #f0f8ff;
  padding: 15px;
  transition: transform 0.2s ease;
}

.boite-tp {
  flex: 1 1 300px;
  border: 2px solid #cccc00;
  border-radius: 10px;
  background-color: #f0f8ff;
  padding: 15px;
  transition: transform 0.2s ease;
}

.boite-projet {
  flex: 1 1 300px;
  border: 2px solid #cc0000;
  border-radius: 10px;
  background-color: #f0f8ff;
  padding: 15px;
  transition: transform 0.2s ease;
}

.boite:hover {
  transform: scale(1.02);
  background-color: #e6f2ff;
}

.boite-tp:hover {
  transform: scale(1.02);
  background-color: #e6f2ff;
}

.boite-projet:hover {
  transform: scale(1.02);
  background-color: #e6f2ff;
}
.boite h3 {
  margin-top: 0;
}

.boite-tp h3 {
  margin-top: 0;
}

.boite-projet h3 {
  margin-top: 0;
}

.boites-lecons .boite {
  text-decoration: none;
  color: #007ACC;
}

.boites-lecons .boite-tp {
  text-decoration: none;
  color: #cccc00;
}

.boites-lecons .boite-projet {
  text-decoration: none;
  color: #cc0000;
}

