/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  background-image: url("Bub.png");
  background-size: cover;        /* L’image couvre tout l’écran */
  background-repeat: no-repeat;  /* Pas de répétitions */
  background-position: center;   /* Centrer l’image */
  background-attachment: fixed;  /* (Optionnel) fond fixe quand tu scroll */
}.miku-image {
  width: 200px;            /* taille de l’image (tu peux changer) */
  position: fixed;         /* la fixe à l’écran */
  bottom: 10px;            /* distance du bas */
  left: 10px;              /* distance de la gauche */
  z-index: 10;             /* reste au-dessus du fond */
  border-radius: 10px;     /* option : arrondit un peu */
}

