body,
html,
* {
  margin: 0;
  padding: 10;
}

body {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  background-color: blue;
  justify-content: center;
  align-items: center;
}

h2 {
  padding-top: 20px;
  width: 100vw;

  color: yellow;
}

p {
  margin: 30px;
}
.white {
  color: white;
}
.no-margin {
  margin: 0px;
  font-size: 5vw; /* ou ajustez selon le besoin */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: underline;
}

#big {
  position: relative;
  width: 100dvw;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 130px;
}
.footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: blue; /* ou toute autre couleur de fond que vous préférez */
  color: white;
  text-align: center; /* pour centrer le texte si nécessaire */
  padding: 10px;
  padding-right: 20px;
  padding-bottom: 50px;
}
