/* CSS pour le style d'écriture informatique */
.monospace {
  font-family: "Courier New", Courier, monospace;
}
/* CSS pour le texte en gras */
.bold {
  font-weight: bold;
}
body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
}
.half {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image {
  opacity: 0;
  max-width: 50%;
  animation: fadeIn 8s ease forwards;
  transition: transform 0.3s ease;
}
.image:hover {
  transform: scale(1.1);
}
.text {
  color: #fff;
  font-size: 24px;
  margin-top: 20px;
}
.footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  color: #fff;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }  
} 
/* CSS pour la séparation */
.separator {
  border-left: 2px solid #ff000093; /* Bordure de séparation */
  height: 95%; /* Hauteur égale à la hauteur du conteneur */
}

/* CSS pour le pied de page */
.footer {
  font-size: 0.8em; /* Réduit la taille de la police du pied de page */
}
/* style.css */
.footer {
  text-align: center; /* Aligner le contenu au centre */
}
.button {
  background-color: #ff0000a4; /* Fond rouge */
  color: #fff; /* Texte blanc */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.button:hover {
  transform: scale(0.95);
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
}
/* styles.css */
.footer {
  text-align: center; /* Aligner le contenu au centre */
}