/* Grundlegendes Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Hintergrundbild */
body {
  background-image: url('cat.webp'); /* Stelle sicher, dass das Bild im gleichen Ordner ist */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Inhalt */
.content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Leichte dunkle Schicht für besseren Kontrast */
  padding: 20px;
  border-radius: 10px;
}

h1 {
  font-size: 2.5em;
}

p {
  font-size: 1.2em;
}