/* Typography */
@font-face {
font-family:'INTER_medium';
src: url('font/InterDisplay-Medium.woff2') format('woff2'),
		 url('font/InterDisplay-Medium.woff') format('woff');
		 font-weight: normal; font-style: normal;
}

@font-face {
font-family:'INTER_light';
src: url('font/InterDisplay-Light.woff2') format('woff2'),
		 url('font/InterDisplay-Light.woff') format('woff');
		 font-weight: normal; font-style: normal;
}

/* HTML */
body {
background-color: #FFF;
font-family:'INTER_light', Helvetica, sans-serif;
text-rendering: optimizelegibility;
}

/* Classes */
.content {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width:  100%;
margin: 100px auto;
}


.container {
width: auto;
margin: auto;
overflow: hidden;
line-height: 0;
}

.pad_top10 		{padding-top:10px;}
.pad_top15 		{padding-top:15px;}
.pad_top100 	{padding-top:100px;}
.pad_top200 	{padding-top:200px;}

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