@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

html {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
}

section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  background-color: rgb(37, 37, 37);
  flex-direction: column;
  padding: 50px 20px; /* Mehr Platz an den Seiten hinzugefügt */
}

section h1 {
  color: rgb(255, 255, 255);
  text-align: center;
  width: 100%;
  font-size: 48px;
  margin-bottom: 2%;
}

section p {
  color: rgba(255, 255, 255, 0.322);
  width: 100%;
  margin-bottom: 40px;
}

.container { /* Breite des Containers angepasst */
  margin: 0 auto;
}

.texts {
  display: flex;
  flex-direction: column;
}

.texts p {
  margin-bottom: 10px;
  border-radius: 32px;
  padding: 10px;
  text-align: center;
  color: white;
}

.texts p.replay {
  align-self: flex-start; /* Linker Text */
  background-color: rgb(70, 70, 70);
  margin-left: 40%; /* Leicht nach rechts versetzt */
}

.texts p:not(.replay) {
  align-self: flex-end; /* Rechter Text */
  background-color: rgba(0, 0, 0, 0.1);
  margin-right: 40%; /* Leicht nach links versetzt */
  padding-left: 20px;
  padding-right: 20px;
}
