body {
font-family: "courier", monospace;
margin: 0;
padding: 0
}

.background {
width: 100vw;
height: 100vh;
background-image: url(background.jpg);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
background-blend-mode: luminosity;
background-color: rgba(0,0,0,1);
position: relative;
/*filter: grayscale(1);*/
z-index: 0
}

.stage {
width: 100vw;
height: 100vh;

/*background-color: rgba(240,125,0,.9);
mix-blend-mode: hard-light;*/
position: relative;
text-align: center;
padding-top: 20vh;
box-sizing: border-box;
opacity: .9;
position: relative;
z-index: 1
}

.logo {
color: #f07d00
}

.legal {
position: absolute;
top: 100vh;
width: 100vw;
height: auto;
background: #fff;
font-size: 11px;
padding: 40px 0;
box-sizing: border-box
}

h1 {
font-size: 4rem;
margin: 0;
}

h2 {
font-size: 2rem;
margin: 0 0 1.5rem 0;
}



@media screen and (max-width:600px) {

h1 {
font-size: 2rem;
margin: 0;
}

h2 {
font-size: 1rem;
margin: 0 0 1.5rem 0;
}

}