
html {
    overflow-x: hidden;
}

html * {
    outline: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.logo {
	max-width: 1000px;
    width: 90%;
}

body {
	text-align: center;
	background-color: black;
	font-family: 'Luckiest Guy', Arial, Helvetica, sans-serif;	
	color: white;
	font-size: 22pt;
}

.info {
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 10pt;
}

@media (min-width: 600px) {
    body {
		font-size: 36pt;
	}
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

/* unvisited link */
a:link, a:visited, a:hover, a:active {
	color: rgb(255, 230, 0);
	text-decoration: none;
  }