html{
    //font-size:15px;
}
@font-face {
  font-family: Title;
  src: url(HackedCRT.ttf);
}
body{
	background-image:URL(back.jpg);
	background-size: cover;
        background-repeat: no-repeat;
	color:white;
	font-family: Sans-Serif;
	font-size:1.5em;
        min-height:100vh;
        overflow-X:hidden;
	}
body h1, body h2{
	text-align:center;
	font-family: Title;
        word-break: break-word;
	}
body h1{
	margin-top:10vw;
	}
body h2{
    
}
#back{
    position:absolute;
    top:0;
    left:0;
    height:100vh;
    width:100vw;
    z-index: -100;
}
div.flexmenu{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}
div.flexmenu div.menu{
	border:3px outset #BCBCBC;
	border-radius:5px;
	color:#BCBCBC;
	text-align:center;
	padding-left:1.5em;
	padding-right:1.5em;
	width:auto;
	margin:1em;
	font-weight:bold;
	cursor:pointer;
	}
div.flexmenu div.menu:hover{
	border:3px inset white;
	color:white;
	}
@media (max-width: 800px) {
        html{
            //font-size:10px;
        }
        #back{
            display:none;
       }

