@charset "utf-8";
/* CSS Document */

.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    background-color: black;
    min-height: 50px;
    margin-top: 30px; /* Ajouté pour l'espace entre le contenu de la page et le footer */
}

.footer a {
    flex: 1;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.6vw;
    font-weight: bold;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fff;
  border: 5px solid #009999;
  margin: 15% auto;
  padding: 20px;
  width: 50%;
	  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.close {
  color: #aaa;
  cursor: pointer;
  float: right;
  font-size: 28px;
}

.close:hover {
  color: black;
}

.modal-content strong {
  font-weight: bold;
}

.modal-content a {
  color: black;
}

