	@font-face{
		font-family: Rhode-Semibold;
		src: url('fonts/Rhode-SemiboldNormal.otf') format("opentype");
	}

	@font-face{
		font-family: Rhode-Medium;
		src: url(fonts/Rhode-Medium.ttf) format("truetype");
	}

	@font-face{
		font-family: HelveticaNeue;
		src: url('fonts/HelveticaNeue.otf') format("opentype");
	}

	@font-face{
		font-family: HelveticaNeue-Medium;
		src: url('fonts/HelveticaNeue-Medium.otf') format("opentype");
	}






html, body {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000000;
	color:#ffffff;
	font-family: Rhode-Semibold;
}

body {
	color:#ffffff;
	font-family: Rhode-Semibold;
	margin:0;
	outline: none;
}

a:link {
	text-decoration: none;
	outline:none;
	font-weight: bold;
	color:black;
}

a:hover{
	text-decoration: none;
}


h1{
		font-size:min(6.5vw,125px);
		color:white;
		text-transform: uppercase;
		letter-spacing: -0.05em;
		line-height: 0vh;
	}
label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

input[type="range"] {
	height: 0;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

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