body {
    background: linear-gradient(to bottom, #4CAF50, #8BC34A);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}
.text {
    width: clamp(300px, 60%, 1500px);
    display: flex;
    flex-direction: column;
    padding: 5%;
}
.model {
    font-size: 2.5rem;
    font-weight: 100;
}
.info {
    margin-top: 30px;
    font-size: 1.4rem;
}

.head, .model, .info, .model, text {
    font-family: "Helvetica", Arial, sans-serif;
    color: white;
}

ol {
  list-style-type: none;
  padding-left: 20px;
}

ol li::before {
  content: "\2022"; /* Unicode für einen einfachen Bulletpoint (•) */
  color: white; /* Farbe des Bulletpoints */
  font-weight: bold; /* Optional: Bulletpoint fett darstellen */
  display: inline-block; /* Sorgt dafür, dass der Bulletpoint Platz einnimmt */
  width: 1em; /* Breite für den Bulletpoint */
  margin-left: -1em; /* Bulletpoint außerhalb des Textbereichs positionieren */
}