/* 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 {
  margin: 0; /* Kein Rand */
  padding: 0;
  background-image: url("Daddy.jpg"); /* Hintergrundbild */
  background-size: cover; /* Füllt die gesamte Seite */
  background-repeat: no-repeat; /* Kein mehrfaches Wiederholen */
  background-position: center; /* Bild mittig ausrichten */
  background-color: #000000; 
  
  color: white; /* Textfarbe */
  font-family: Verdana, sans-serif; /* Schriftart */
  

  <!-- Hier steht dein bestehender Content -->

  <!-- Hier den Bild-Streifen einfügen -->
  <div class="photo-strip-container">
    <div class="photo-strip">
      <img src="https://caroliebtsich.neocities.org/Urlaub.JPG" alt="Foto 1" />
      <img src="https://caroliebtsich.neocities.org/IMG_3941.jpg" alt="Foto 2" />
      <img src="https://caroliebtsich.neocities.org/IMG_4072.jpg" alt="Foto 3" />
      <img src="https://caroliebtsich.neocities.org/IMG_3494.jpeg" alt="Foto 4" />
      <img src="https://caroliebtsich.neocities.org/IMG_4041.jpg" alt="Foto 5" />

      <!-- nochmal damit es durchläuft -->
      <img src="https://caroliebtsich.neocities.org/Urlaub.JPG" alt="Foto 1" />
      <img src="https://caroliebtsich.neocities.org/IMG_3941.jpg" alt="Foto 2" />
      <img src="https://caroliebtsich.neocities.org/IMG_4072.jpg" alt="Foto 3" />
      <img src="https://caroliebtsich.neocities.org/IMG_3494.jpeg" alt="Foto 4" />
      <img src="https://caroliebtsich.neocities.org/IMG_4041.jpg" alt="Foto 5" />
    </div>
  </div>

  <!-- Weiterer Content -->

}

 
   
    