.article {
  width: 60vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  padding-top: 1vh;
  font-family: 'Poppins', sans-serif;
}

.tabelle {
  display: flex;
  justify-content: space-around;
}

.titel {
  max-width: 40%;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
}

.article h2 {
  font-family: "Aldrich", sans-serif;
}

.article a:hover,
.article a:visited,
.article a:link,
.article a:active {
  text-decoration: none;
  color: black;
}

.article a:hover {
  color: grey;
  transition: 0.3s;
}

/*  Tabelle Anfang */
* {
  font-family: sans-serif;
  /* Change your font family */
}

.content-table {
  border-collapse: collapse;
  margin: 5px 0;
  font-size: 2rem;
  min-width: 400px;
  width: 90%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);*/
}

.content-table thead tr {
  background-color: black;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 25px;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
  border-bottom: 5px solid black;
}

/*.content-table tbody tr.active-row {
  font-weight: bold;
  color: black;
}
*/
/*  Tabelle Ende*/

@media (max-width: 1150px) {
  .article {
    width: 100%;
    margin: 0;
    margin-top: 5rem;
  }

  .tabelle {
    justify-content: center;
  }

  .titel {
    padding: 0;
    max-width: 100%;
  }

  .content-table {
    width: 100%;
  }

}

@media (max-width: 510px) {
  .content-table {
    font-size: 1.8rem;
    min-width: 0;
  }

  .content-table th,
  .content-table td {
    padding: 6px 8px;
  }
}