*{
  margin: 0;
  padding: 0;
}
body {
  background: linear-gradient(135deg, rgb(89, 0, 255), violet, rgb(89, 0, 255));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 100dvh;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 4rem;
  background-color: rgba(151, 57, 112, 0.3);
  margin-bottom: 0.5rem;
}
nav a{
  font-size: 1.3rem;
  text-decoration: none;
}
nav a:hover{
  font-size: 1.5rem;
  color: rgb(9, 74, 128);
}
main {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
h1, h2{
  margin: 1rem;
}
p{
  margin-bottom: 0.5rem;
}
#infos {
  height: auto;
  text-align: center;
}
#gameField {
  border: 1px solid black;
  background-color: rgb(0, 255, 255, 0.2);
  border-radius: 7px;
}
#infos {
  margin-top: 2rem;
  height: auto;
}
table {
  border: 1px solid black;
}
td,
tr {
  border: 1px solid black;
  text-align: center;
}

#debug {
  background-color: aquamarine;
  display: none;
}
#cont{
position: relative;
width: 500px;
}
#leben {
  position: absolute;
  left:50px;
  width: 500px;
  height: 10px;
  background-color: brown;

}
#newgame {
  position: absolute;
  top: 400px;
  padding: 8px;
  border-radius: 5px;
  background-color: darkcyan;
  font-size: 25px;
  visibility: hidden;
}
