*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0 auto;
}

html,
body,
main,
h2 {
  height: 100%;
}

::selection {
  background-color: rgba(255, 255, 255, 0);
}

body {
  font-family: monospace;
}

header {
  background-color: rgb(220, 183, 82);
  padding: 2rem;
  height: 200px;
}

h1 {
  font-size: 3rem;
}

p {
  font-size: 1.5rem;
  margin-top: 1rem;
}

button {
  position: absolute;
  right: 30px;
  top: 50px;
  font-size: 2rem;
  box-shadow: 0 0 10px 0 white;
}

main {
  height: calc(100% - 200px);
}

h2 {
  display: flex;
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
  padding-right: auto;
  padding-left: auto;
  text-align: center;
  font-size: 8rem;
}
