body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  margin: 0;
  background-color: aqua;
}

header,
footer {
  height: 2rem;
  background-color: black;
  z-index: 1;
}

main {
  display: flex;
  flex: 1;
}

.starting-button-wrapper {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.starting-button,
.hello-button {
  min-width: 4rem;
  min-height: 2rem;
  border: 1px solid black;
  border-radius: .375rem;
  font-size: 1rem;
  background-color: yellow;
  color: black;
  touch-action: manipulation;
}

.hello-button {
  position: absolute;
}
