
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}



.kommentare {
  flex-direction: column;
  margin: 10px;
  width: 80%;
  text-align:center;
  font-family: "Roboto", sans-serif;
}

.formular {
  display: left;
  flex-direction: row;
  align-items: left;
  margin: 10px;
  border-radius: 5px;
}

.username-input, .kommentar-input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  align-items: left;
  border-radius: 3px;
}

.absenden-button {
  background-color: #0073b7;
  color: white;
  padding: 10px 20px;
  border: 1px solid #0073b7;
  border-radius: 5px;
  cursor: pointer;
}

.absenden-button:hover {
  background-color: #00578b;
}

@media (max-width: 768px) {
  .kommentare {
    flex-direction: column;
  }
  .username-input, .kommentar-input {
    width: 50%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
  }
}