:root {
  --main-bg-color: 205;
  width: 100vw;
}

/* Parallax */
body { /* Prevent double scrollbar */
  margin: 0;
}

#parallax_viewport {
  perspective: 1px;
  perspective-origin: 0% 0%; /* x y */
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

#parallax_background {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

#parallax_background {
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-attachment: scroll, fixed;
	background-image: url('../images/background.jpg'), radial-gradient(ellipse at 2256px 1656px, #d70a21, #5d0502 30%,#0a0200 80%, black);
}

/* General theme */
img, object, embed, video {
	max-width: 100%;
}
#content {
	font-family: arial, verdana, sans-serif;
	max-width:1024px;
	text-align:center;
	margin-left:auto; margin-right:auto; margin-top:0px;
  overflow-x:hidden;
}

