body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
body header {
  background-color: #69181d;
  color: white;
  padding: 20px;
  text-align: center;
}
body header h1 {
  margin: 0;
  font-size: 2.5em;
}
body header nav {
  margin-top: 2px;
}
body header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
body header nav li {
  margin: 0 15px;
}
body header nav li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}
body header nav li a:hover {
  text-decoration: underline;
}
body header .search-container {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}
body header .search-container .search-label {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
body header .search-container .search-input {
  width: 100%;
  padding: 12px;
  font-size: 1.2em;
  border: 2px solid #69181d;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: white;
  text-align: center;
}
body header .search-container .suggestions-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: none;
}
body header .search-container .suggestions-list.visible {
  display: block;
}
body header .search-container .suggestions-list li {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: black;
}
body header .search-container .suggestions-list li:hover {
  background-color: #f1f1f1;
}
body footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 1.1em;
}
body footer p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}
body footer a:hover {
  text-decoration: underline;
  color: #fdda25;
}
body footer p a {
  margin: 0 10px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 600px) {
  body footer p {
    flex-direction: column;
    align-items: center;
  }
  body footer p a {
    margin-bottom: 5px;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hibox {
  font-size: 2.5rem; /* Responsive font size */
  text-align: center;
  padding: 50px;
}
.hibox a {
  color: #69181d;
}

#timer {
  padding: 20px;
  text-align: center;
}

/* Animation de fondu aller-retour */
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
/* Animation d'\u00e9criture (du centre) */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* Animation d'effacement (du centre) */
@keyframes erasing {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
/* Classe pour stopper les animations */
.no-animation {
  animation: none !important;
  border-right: none;
}/*# sourceMappingURL=direct.css.map */