body{
  background-color: black;
  color: white;
  font-family: arial;
  display: flex;
  justify-content: center;
}

div.oben{
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 10;
}

p.titel{
  font-family: arial;
  font-weight: bold;
  font-size: 20px;
  padding-left: 20px;
}

p.unten{
  font-size: 12px;
  background-color: black;
}

div.unten{
  background-color: black;
  padding-top: 12px;
  color: #afafaf;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

div.input{
  font-size: 20px;
  background-color: #212121;
  color: #afafaf;
  width: 700px;
  height: 52px;
  border: 1px solid;
  border-color: #373737;
  border-radius: 30px;
  text-align: left;
  display: flex;
  align-items: center;
}

input.input{
  background-color: #212121;
  border: none;
  outline: none;
  width: 630px;
  height: 50px;
  color: white;
  font-size: 16px;
  margin-left: 20px;
}

button.absenden{
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
}

div.Chat{
  width: 700px;
  padding-bottom: 100px;
}

p.Nachricht{
  background-color: #2b2b2b;
  padding: 12px;
  text-align: right;
  width: fit-content;
  margin-left: auto;
  border-radius: 25px;
}

p.Antwort{
  text-align: left;
  padding: 12px;
  padding-top: 20px;
}