/*
  Description : Ceci est l'index de mon site(css).
  Auteur : Esteban Crausaz
  Date de création : 08.01.2026
  */
* {
  margin: 0;               /* marge */
  padding: 0;              /* espacement */
  box-sizing: border-box;  /* taille */
}

#background-video {
  position: fixed;         /* fond */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* plein écran */
  z-index: -1;
  background: rgba(0, 0, 0, 0.55);
}

nav {
  position: absolute;      /* menu */
  top: 20px;
  width: 100%;
  text-align: center;
}

nav a {
  color: white;            /* liens */
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline; /* survol */
}

.content {
  height: 100vh;           /* centrage */
  display: flex;
  justify-content: center;
  align-items: center;
}

.content h1 {
  color: white;            /* titre */
  font-size: 60px;
  text-shadow: 2px 2px 10px black;
  font-family: 'Times New Roman', Times, serif;
}

footer {
  position: fixed;         /* signature */
  bottom: 15px;
  right: 20px;
  color: white;
  font-size: 14px;
}