@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono');

html, body{
  width: 100%;
}

body {
  -webkit-overflow-scrolling:touch; overflow:auto;
	font-family: IBM Plex Mono;
	font-size: 40px;
	line-height: 1.5;
	padding-top: 50px;
	background-color: white;
	color: #000000;
	
}

header{
  position: fixed;
  top:40px;
  left: 40px;
  z-index: 111;
  pointer-events: none;
}

header h1{
  display:inline-block;
  background: rgba(255,255,255,0.6);
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 0px 20px;
}

header p{
  background: rgba(255,255,255,0.6);
  padding: 0px 20px;
}

section{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

section img{
  width: 900px;
}

@media only screen and (max-width: 550px) {
  section {
    pointer-events: none;
  }
}