body {
  background-color: #010101;
  /*background-image: url('JamesBackgroundBlackDesktop.png');*/
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-size: 100%;
  background-position: center;
  margin: 0;
}

a {
  text-decoration: none;
  color: white;
}

@font-face {
  font-family: Junicode;
  src: url('Junicode.woff');
}

#content {
  margin: 0 auto;
  max-width: 1280px;
  background-color: transparent;
}

#antigravity-canvas {
  position: fixed;
  /* Stays in place when you scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Puts it BEHIND your content */
  display: block;
  pointer-events: none;
  /* Crucial: lets you click buttons/text ON TOP of the canvas */
}

input {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #010101;
  width: 80%;
  color: #e9e9e9;
  font-family: "Junicode", sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: 200;
  letter-spacing: 5px;
}

.container {
  position: absolute;
  width: 85%;
  height: 85%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  border: 0px solid #544f4f;
  max-width: 1024px;
  background-color: transparent;
}

.title-text {
  color: #e9e9e9;
  font: 400 15px "Junicode", sans-serif;
  font-size: 48px;
  text-align: center;
  font-weight: 200;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.body-text {
  width: 100%;
  color: #e9e9e9;
  font: 400 18px "Junicode", sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: 200;
  letter-spacing: 5px;
}

.header {
  color: #e9e9e9;
  font: 400 15px/1.8 "Junicode", sans-serif;
  font-size: 50px;
  margin: 30px auto;
  text-align: center;
  font-weight: 200;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.top-header {
  font-weight: 800;
}

.rotatem45 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.rotate90 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
  font: 400 15px "Junicode", sans-serif;
  overflow: hidden;
  background-color: #010101;
  position: sticky;
  position: -webkit-sticky;
  top: 0;

}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}


/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #707070;
  color: black;
}

/* Active/current link */
.navbar a.active {
  background-color: #544f4f;
  color: white;
}

/* Right & Active/current link */
.navbar a.right-active {
  background-color: #544f4f;
  color: white;
  float: right;
}

.radio-toolbar label {
  display: inline-block;
  padding: 10px 20px;
  font-family: "Junicode", sans-serif;
  font-size: 20px;
  cursor: pointer;
  color: #e9e9e9;
}

.radio-toolbar input[type="radio"] {
  display: none;
  width: auto;
}

.radio-toolbar input[type="radio"]:checked+label {
  background-color: #544f4f;
  border-radius: 4px;
}

input[type="submit"] {
  background-color: #544f4f;
  cursor: pointer;
  font-size: 20px;
  padding: 10px 20px;
  width: auto;
  border: none;
  color: white;
}

input[type="submit"]:hover {
  background-color: #707070;
}

.submit-btn {
  background-color: #544f4f;
  cursor: pointer;
  font-size: 24px;
  padding: 15px 30px;
  width: auto;
  border: none;
  color: white;
  margin-top: 20px;
  margin-bottom: 50px;
  display: inline-block;
  font-family: "Junicode", sans-serif;
}

.submit-btn:hover {
  background-color: #707070;
}