:root {
	--bgcolor : #424242;
	--section-bar-size : 40px;
	--accent : #edce34;
	--dark-color : #2d3436;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Quicksand;
  height: 100%;
	margin: 0px;
	top: 0px;
}

a {
  color: #00B7FF;
}

iframe{
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 100%;
	/* position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px; */
}

#backdrop {
	position: fixed;

  height: 100vh;
	width: 100%;
  margin: 0px auto;
  top: 0;
  left: 0;
  z-index: 0;
}

#main_wrapper {
  position: relative;
  z-index: 1;

	display: flex;

  max-width: 1080px;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;

  background-color: #F5F5F5;
}

#page_wrapper {
  position: relative;

  width: calc(100% - var(--navigation-width));
  min-height: 100vh;
  margin-left: auto;
  margin-right: 0px;

  background-color: #FFFFFF;
}

#info_bar {
	position: relative;

	height: 24px;
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;

	overflow: hidden;
	background-color: var(--dark-color);

	color: rgba(255,255,255,0.3);
	line-height: 24px;
	vertical-align: middle;
	text-align: right;
	padding-right: 5px;

	box-sizing: border-box;
}

#foot_bar {
	position: absolute;

	bottom: 0px;

	height: 24px;
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;

	overflow: hidden;
	background-color: var(--dark-color);

	color: rgba(255,255,255,0.3);
	line-height: 24px;
	vertical-align: middle;
	text-align: right;
	padding-right: 5px;

	box-sizing: border-box;
}

#banner_wrapper {
	position: relative;

	height: calc(50vh - 24px - 100px - 10vh);
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;

	overflow: hidden;
}

#banner_image{
	position: absolute;
	height: 130%;
	top: -20%;
	left: -20%;
}

.banner_layer {
	position: absolute;
	height: calc(100vh - 24px - 100px - 10vh);
	top: -200px;
	left: 30px;
}

.image{
	height: 100%;
}

#section_bar {
	position: sticky;
	z-index: 2;

	top:0px;

	height: var(--section-bar-size);
	width: 100%;

	overflow: hidden;
	background-color: var(--dark-color);

	display: flex;
}

.section_button {
	height: var(--section-bar-size);
	width: 100%;

	color: rgba(255,255,255,0.5);
	line-height: var(--section-bar-size);
	vertical-align: middle;
	text-align: center;
	padding-right: 5px;

	cursor: pointer;
}
