@font-face {
  font-family: mar-regular;
  src: url(/assets/fonts/Merriweather-Regular.ttf);
}
@font-face {
  font-family: mar-light;
  src: url(/assets/fonts/Merriweather-Light.ttf);
}

:root {
  --bordercolor: #1e90ff;
}

body {
  background-color: #131313;
  overscroll-behavior: contain;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  width: 0px;
}

* {
  margin:0;
  padding:0;
  color: #F8F8FF;
  font-family: mar-light;
} 

canvas {
  display: block;
}

#container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}

#html {
  z-index: 3;
  position: relative;
  width: 100vw;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity .3s ease-in-out;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -ms-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  overflow: hidden;
}

.bottom {
  position: relative;
  overflow-x: hidden;
  z-index: 20;
  opacity: 1;
}