html,
body {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}

body {
  margin: 0;
  padding: 0;

  color: #fff;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 700;
}
.spiel {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.spiel__container {
  width: inherit;
  height: inherit;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 100% 100%;
}
.spiel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 10px 20px;

  background-color: #0c0505ab;
  text-shadow: 1px 1px 1px black;
}
ul > *:not(:last-child) {
  margin-bottom: 10px;
}
button {
  border: none;
  padding: 5px 10px;

  cursor: pointer;

  transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
button:hover,
button:focus {
  background-color: rgb(136, 0, 0);
  color: #fff;
}
.nachrichtEndeSpiel {
  font-size: 20px;
  color: rgb(208, 4, 4);
  text-transform: capitalize;
  text-decoration: solid;
}
