/* Instructions: Keep classes marked as "Important:', anything else can be deleted */

/* Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  background-image: linear-gradient(to top, #0d1b24, #175849);
  z-index: 100;
  font-size: 10px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  font-family: DMSans;
}

main {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #878787;
  pointer-events: none;
}

/* Extras */
.background {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10vw;
  text-align: center;
}

.foreground {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 2.5vw;
  text-align: center;
  z-index: 20;
  margin-bottom: 5vw;
}

/* Important: WebGL Canvas */
.webgl {
  position: fixed;
  outline: none;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}
