/* CSS Reset */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}

/* ——— */

@font-face {
  font-family: 'ProximaNova';
  src: url('../fonts/proximanova/marksimonson-proximanovalight.eot');
  src: url('../fonts/proximanova/marksimonson-proximanovalight.eot') format('embedded-opentype'), url('../fonts/proximanova/marksimonson-proximanovalight.woff2') format('woff2'), url('../fonts/proximanova/marksimonson-proximanovalight.woff') format('woff'), url('../fonts/proximanova/marksimonson-proximanovalight.ttf') format('truetype'), url('../fonts/proximanova/marksimonson-proximanovalight.svg#ProximaNova') format('svg');
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'ProximaNova';
  src: url('../fonts/proximanova/marksimonson-proximanovasemibold.eot');
  src: url('../fonts/proximanova/marksimonson-proximanovasemibold.eot') format('embedded-opentype'), url('../fonts/proximanova/marksimonson-proximanovasemibold.woff2') format('woff2'), url('../fonts/proximanova/marksimonson-proximanovasemibold.woff') format('woff'), url('../fonts/proximanova/marksimonson-proximanovasemibold.ttf') format('truetype'), url('../fonts/proximanova/marksimonson-proximanovasemibold.svg#ProximaNova') format('svg');
  font-weight: 700;
  font-style: normal; }

/* ——— */

* {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
}

body {
  min-width: 100vw;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 0;
}

html {
  min-width: 100vw;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  overflow: hidden;
  font-family: ProximaNova, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #979797;
  background-color: #000;
}

body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height:150px;
  background-image: url('/../assets/img/uc-bg2.png');
  background-repeat: no-repeat;
  background-size: 100% 15px;
  background-position: center bottom;
}

/* ——— */

h1, h2, h3, h4, h5, h6 {
  font-family: ProximaNova, sans-serif;
  font-weight: 400;
}

main {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
}

canvas {
	display: block;
}

h2 {
  font-size: 16px;
  margin: 40px 0 20px;
}

a {
  color: #979797;
  text-decoration: underline;
}

a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

/* ——— */

@media screen and (max-width: 480px) {
  body::after {
    background-size: 1440px 15px;
  }
}