/**
 * Instructions:
 * - Keep every section marked with "! Keep"
 */

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

html {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  background-image: linear-gradient(to top, #0d1b24, #175849);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Canvas */
/* ! Keep */
.webgl {
  position: fixed;
  outline: none;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}
