*,
*::after,
*::before {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: #fff;
	background-color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('PlusJakartaSans-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900; /* Supports the full range of weights */
  font-style: normal;
}

#animation_container {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 13vh; /* Adjust this to move the whole unit up/down */
  left: 50%;
  transform: translateX(-50%);
  
  /* Fluid width for ALL screens */
  width: 95vw; 
  /* Max width keeps it from getting absurdly huge on ultra-wide monitors */
  max-width: 1200px; 
  
  /* Height scales slightly with width for a natural feel */
  height: clamp(80px, 15vh, 170px); 
  
  pointer-events: none;
  z-index: 10;
}

a {
	font-family: sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: #5a5a5a;
	outline: none;
}

a:hover,
a:focus {
	color: #3eaaf1;
	outline: none;
}

.content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 13rem);
	position: relative;
	justify-content: flex-start;
	align-items: center;
}

#app {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: absolute;
}

canvas {
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 53em) {
	.content {
		height: 100vh;
		justify-content: center;
	}
}
