@import "https://fonts.googleapis.com/css?family=Press%20Start%202P";

*{
  margin: 0;
  padding: 0;
}

html, body{
  display:flex;
  justify-content:center;
  align-items:center;
  font-family: 'Press Start 2P';
  font-size: 0.5rem;
  line-height: 2;
  height: 100%;
  background-size: contain;
  background-color: black;
  text-align: center;
  color: yellow;
  justify-content: space-around;
  display: flex;
  flex-direction: column;
}

h1{
  font-family: 'Press Start 2P';
  font-size: 1rem;
  line-height: 2;
 }

h2{
  font-family: 'Press Start 2P';
  font-size: 1rem;
  line-height: 2;
 }

header{
  border: 1px solid red;
}

section{
  border: 1px solid yellow;
  background-image: url("./background.jpg") cover no-repeat;
}

footer{
   border: 1px solid blue;
   position: fixed;
   bottom: 0px;
}

#result{
    display: none;
}

#result:active{
   display: block;
}

