@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville&display=swap');

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: black;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

canvas {
  position: absolute;
  z-index: 1;
}

div.base {
  position: absolute;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2em;
  line-height: 1.5em;
  z-index: 2;
  background-color: white;
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

div#base > div {
  flex: 1;
}

.title {
  font-family: 'Bebas Neue', cursive;
  font-size: 16vw;
  line-height: 1em;
}

button {
  width: 50vw;
  height: 20vw;
  background-color: red;
  color: white;
  font-family: 'Bebas Neue', cursive;
  font-size: 15vw;
  z-index: 5;
  margin-bottom: 100px;
  align-self: flex-end;
  justify-self: center;
}

header, footer {
  position: absolute;
  background-color: white;
  color: black;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 8;
  display: none;
}

header {
  top: 10px;
  right: 10px;
}

footer {
  bottom: 10px;
  left: 10px;
}

header > div, footer > div {
  padding: 5px;
}

@media (min-width: 700px) {
  button {
    width: 20vw;
    height: 10vw;  
    font-size: 5vw;
  }
  header, footer {
    display: flex;
  }
}