#activities {
  width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

#etudes, #sports, #loisirs {
  background-color: #e8d0c8;
  padding: 10px;
  margin: 10px;
  width: 40%;
  
  border: 1px solid black;
  border-radius: 10px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}



#etudes ul, #sports ul, #loisirs ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sport-1 a {
  text-decoration: none;
  font-weight: 700;
  color: #433a39;
}

.sport-1 a:hover {
  color: #433a39;
}

.sport-1 a:focus {
  color: #433a39;
}

.sport-1 a:visited {
  color: #433a39;
}

.titre-etudes, .titre-sport, .titre-loisir {
  margin-top: 10px;
}

.etudes-soustitre, .activite-soustitre {
  margin-bottom: 10px;
}

.etudes-soutien, .etudes-ete, 
.sports-sport, .sports-entrainement, 
.loisir-musique, .loisir-arts, .loisir-cuisine, .loisir-autres {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  width: 100%;
}

.etudes-soutien h3, .etudes-ete h3, 
.sports-sport h3, .sports-entrainement h3,
.loisir-musique h3, .loisir-arts h3, .loisir-cuisine h3, .loisir-autres h3 {
  margin-bottom: 10px;
}

#contacts {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#contacts-card {
  background-color: #e8d0c8;
  height: 60%;
  width: 55%;
  border: solid 1px black;
  border-radius: 10px;
  padding: 20px;
}

.titre-contacts {
  margin-bottom: 15px;
}

#contact-info {
  height: 80%;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-info div {
  display: flex;
  gap: 10px;
}

#events {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10px;
}

@media screen and (width <= 600px) {
   #etudes, #sports, #loisirs {
    width: 60%;
  }
  
  #contacts-card {
    width: 100%;
  }  
  
  .titre-contacts {
    font-size: 25px;
  }
  
  #contact-info {
    font-size: 16px;
  }
}