*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
}
/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

/* HOME STYLE */
.container {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #59a9ef6a;
}

h1{
  font-size: 36px;
  color: #1c1c1c;
  margin-top: 50px;
  margin-bottom: 50px;
  transition: color 0.3s ease;
}

h1:hover {
  color: #2b8add; /* Changement de couleur au survol */
}

h4{
  color: #1c1c1c;
  margin-bottom: 50px;
}


.button-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
}

.button {
  background-color: #2b8add;
  /*#4CAF50*/
  color: white;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 10px;
  transition: 0.4s ease;
}

.button:hover {
  background-color: #2c5fe1;
  cursor: pointer;
}