body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16pt;
  text-decoration: none;
  font-weight: 300;
  color: #999;
  background: #000000;
}
.header {
  display: flex;
  align-items: center;
	justify-content: center;
	width: 100%;
  margin-bottom: 25px;
}
.noodleV1{
  display: flex ;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 220px;
  max-width: 600px;
  text-align: center;
}
.looper {
  display: flex ;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
	min-width: 220px;
  max-width: 600px;
}

button {
  min-width: 125px;
  height: 125px;
  background-color: #333333;
  margin: 10px;
  flex-grow: 1;
  gap: 10px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  border-right: 2px solid #999;
  border-bottom: 2px solid #666;
}
button.play {
  background-image: url(play.png);
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
button.play:hover {
  background-color: #7e7f7e;
  background-image: url(playit.png);
}
button:hover {
  cursor: pointer;
  background-color: #eeefee;
}
button.stop {
  background-image: url(stop.png);
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
button.stop:hover {
  background-color: #7e7f7e;
  background-image: url(stopit.png);
}

datalist {
  display: flex;
  justify-content: space-between;
  padding-left: 4px;
  margin-top: 5px;
  width: 200px;
}
.titleline {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  margin-left: 20px;
  margin-right: 20px;
  color: #999;
  background-color: #000;
  width: 200px;
}
.slidecontainer {
  width: 200px;
  height: 50px;
  margin: 20px;
  color: #ccc;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.footer i {
  font-size: 50px;
  padding: 20px;
}
.footer a {
  color: #999;
  text-decoration: none;
  border: none;
}
.footer a:hover {
  color: #fff;
  text-decoration: none;
  border: none;
  background-color: transparent;
}

.button {
  flex: 1 1 calc(50% - 10px); /* Standard: 2 Spalten */
}

/* Ab 900px: 4 Spalten */
@media (min-width: 600px) {
  .button {
    flex: 1 1 calc(25% - 10px);
  }
}
