canvas {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

body {
  overflow: hidden;
  height: 100%;
}

:root {
  --background: rgba(10, 0, 0, 0.75);
  --elementSpacing: 100px;

  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-image: url("/assets/spacebackground.jpg");
}

main {
  width: 100vw;
  color: white;
  z-index: 49;
  position: absolute;
  width: 100%;
  margin: 0px auto;
  padding: 120px 0px;
}

h2,
h3,
blockquote {
  font-family: "Source Serif Pro", serif;
  font-weight: 700;
  font-style: normal;
}
h1 {
  font-family: "Source Serif Pro", cursive;
  font-weight: 900;
  font-style: normal;
  margin: 0;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
}

header {
  background: var(--background);
  font-size: 2.5rem;
  padding: 2rem;
  margin-bottom: var(--elementSpacing);
}

section {
  padding: 1rem;
  background: var(--background);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: var(--elementSpacing);
}

footer {
  padding: 1rem;
  background: var(--background);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: var(--elementSpacing);
}

footer h2 {
  color: white;
  font-size: 3rem;
}

blockquote {
  margin: 0;
  padding: 0;
  margin-bottom: var(--elementSpacing);
}

blockquote h2 {
  color: black;
  background-color: white;
  font-size: 4rem;
  display: inline-block;
  line-height: 5rem;
  padding-left: 10px;
  padding-right: 10px;
}

#page1 {
  display: contents;
}

a {
  color: #58dbfc;
}

/*Splash Screen */

.splash {
  cursor: pointer;
  position: fixed;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  background-color: black;
  z-index: 99;
}

.splashLogo {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  height: 25%;
}

.invisible {
  visibility: hidden;
}

.scrollButton{
  position: fixed;
  right: 0;
  color: black;
  background-color: white;
  z-index: 50;
  width:80px;
  height:80px;
}

#backButton {
  top: 0;
}

#nextButton {
  bottom: 0;
}

.arrow{
  position:fixed;
  width:50px;
  right:14.5px;
  z-index:51;
  transform: scale(1);
}

#arrow-down{
  bottom:6px;
}

#arrow-up{
  top:6px;
}