/* Das ist die CSS-Datei für Tituses Webseite */
/* Hier kannst du die Farben, Schriften und das Layout ändern */

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

html {
  min-height: 100vh;
  line-height: 1.5;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  background-image: url('hafen.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Die weiße Box in der Mitte */
.container {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  min-height: calc(100vh - 4rem);
}

/* Die große blaue Überschrift */
h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: blue;
  text-align: center;
}

/* Jeder Buchstabe springt einzeln */
.letter {
  display: inline-block;
  animation: bounce 1s ease infinite;
}

/* Die Spring-Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-20px); }
  75% { transform: translateY(20px); }
}

/* Die beiden großen Emojis */
.emojis {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 1rem;
}

.emojis p {
  font-size: 120px;
  line-height: 1;
  margin: 0;
}

/* Der erste Text hat etwas mehr Abstand nach oben */
.first-info {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Die anderen Texte */
.info {
  margin: 0.5rem 0;
}

/* Die Freunde-Liste */
ul {
  margin-top: 1rem;
  list-style-type: disc;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}
