.normalizeLinks:link {
  color: #eeeeff;
  text-decoration: none;
}
.normalizeLinks:hover {
  color: #eeeeff;
  text-decoration: none;
}
.normalizeLinks:visited {
  color: #eeeeff;
  text-decoration: none;
}
.normalizeLinks:active {
  color: #eeeeff;
  text-decoration: none;
}
html,
body {
  position: relative;
  font-family: Rockwell, "Liberation Mono", Courier, monospace;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: black;
  background: linear-gradient(rgba(198, 198, 215, 0.9), rgba(198, 198, 215, 0.55)), url("../screenshots/140H-compressed.jpg");
  background-size: cover;
}
h1 {
  display: block;
  width: 100%;
  padding: 0 0 0 55px;
  float: left;
  font-size: 150%;
}
h2 {
  padding: 0 0 0 15px;
}
#menu {
  float: left;
  width: 18vw;
  min-width: 100px;
  height: 100%;
  margin: 0;
  background: #3333ff;
  color: #eeeeff;
}
.menuItem {
  display: flex;
}
.menuItem a {
  width: 100%;
  padding: 0.5rem 0 0.5rem 2rem;
  transition: background-color 1s;
}
.menuItem a:link {
  color: #eeeeff;
  text-decoration: none;
}
.menuItem a:hover {
  color: #eeeeff;
  text-decoration: none;
}
.menuItem a:visited {
  color: #eeeeff;
  text-decoration: none;
}
.menuItem a:active {
  color: #eeeeff;
  text-decoration: none;
}
.menuItem a:hover {
  font-weight: bold;
  background-color: #6666ff;
}
.menuItem a i {
  padding: 1rem;
  font-size: 150%;
}
#content {
  position: relative;
  float: left;
  width: 82vw;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 140%;
}
section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 20rem;
  padding-top: 7rem;
  padding-bottom: 10rem;
}
.sectionHome,
.sectionMisson,
.sectionPrototype {
  background: linear-gradient(#eeeeff, #e4e4ff);
  background-size: cover;
}
.sectionMisson {
  background: rgba(200, 200, 255, 0.5);
  min-height: 25rem;
}
#sectionHeader {
  background: transparent;
}
p {
  width: 90%;
  padding-left: 7.5rem;
  padding-right: 7.5rem;
  font-size: 85%;
  line-height: 175%;
}
@keyframes flyRocket {
  0% {
    transform: translate(0, 0) rotate(-45deg);
  }
  20% {
    transform: translate(0.5rem, -5rem) rotate(-25deg);
  }
  40% {
    transform: translate(3rem, -10rem);
  }
  50% {
    transform: translate(6rem, -12rem) rotate(30deg);
  }
  100% {
    transform: translate(20rem, -17rem) rotate(40deg);
  }
}
.launch {
  /*transform(translate(5rem,-9rem));
    .transition(1500ms ease-in-out);*/
  animation: flyRocket 3s linear;
  color: #3333ff;
}
.linkWrapper {
  width: 95%;
  display: flex;
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}
.linkWrapper a {
  margin: auto;
  padding: 1rem 4.5rem 1rem 3.5rem;
  background-color: #3333ff;
  transition: background-color 1s;
}
.linkWrapper a:link {
  color: #eeeeff;
  text-decoration: none;
}
.linkWrapper a:hover {
  color: #eeeeff;
  text-decoration: none;
}
.linkWrapper a:visited {
  color: #eeeeff;
  text-decoration: none;
}
.linkWrapper a:active {
  color: #eeeeff;
  text-decoration: none;
}
.linkWrapper a:hover {
  background-color: #8080ff;
}
.linkWrapper a:hover i {
  /*transform(translate(5rem,-9rem));
    .transition(1500ms ease-in-out);*/
  animation: flyRocket 3s linear;
  color: #3333ff;
}
.linkWrapper a i {
  transition: color 2s;
  padding: 1rem;
  font-size: 150%;
}
/**** Image carousel *****/
.slides {
  padding: 0;
  width: 70vw;
  height: 85vh;
  display: block;
  margin: 2rem auto;
  position: relative;
}
.slides * {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.slides input {
  display: none;
}
.slide-container {
  display: block;
}
.slide {
  top: 0;
  opacity: 0;
  display: block;
  position: absolute;
  transform: translate(200px, 50px) scale(0.5, 0.75);
  transition: all 0.7s ease-in-out;
}
.slide img {
  width: 100%;
  height: 100%;
}
.nav label {
  width: 200px;
  height: 100%;
  display: none;
  position: absolute;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
  transition: opacity .2s;
  color: #FFF;
  font-size: 156pt;
  text-align: center;
  line-height: 380px;
  font-family: "Varela Round", sans-serif;
  background-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0px 0px 15px #777777;
}
.slide:hover + .nav label {
  opacity: 0.5;
}
.nav label:hover {
  opacity: 1;
}
.nav .next {
  right: 0;
}
input:checked + .slide-container .slide {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in-out;
}
input:checked + .slide-container .nav label {
  display: block;
}
.nav-dots {
  width: 100%;
  bottom: 9px;
  height: 11px;
  display: block;
  position: absolute;
  text-align: center;
}
.nav-dots .nav-dot {
  top: -5px;
  width: 11px;
  height: 11px;
  margin: 0 4px;
  position: relative;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
}
.nav-dots .nav-dot:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
}
input#img-1:checked ~ .nav-dots label#img-dot-1,
input#img-2:checked ~ .nav-dots label#img-dot-2,
input#img-3:checked ~ .nav-dots label#img-dot-3,
input#img-4:checked ~ .nav-dots label#img-dot-4,
input#img-5:checked ~ .nav-dots label#img-dot-5,
input#img-6:checked ~ .nav-dots label#img-dot-6,
input#img-7:checked ~ .nav-dots label#img-dot-7,
input#img-8:checked ~ .nav-dots label#img-dot-8,
input#img-9:checked ~ .nav-dots label#img-dot-9,
input#img-10:checked ~ .nav-dots label#img-dot-10,
input#img-11:checked ~ .nav-dots label#img-dot-11 {
  background: rgba(0, 0, 0, 0.8);
}
@media all and (max-width: 1300px) {
  #menu {
    display: none;
  }
  #content {
    width: 100vw;
  }
  .slides {
    height: 60vh;
  }
}
@media all and (max-width: 1000px) {
  .slides {
    height: 40vh;
  }
}
@media all and (max-width: 800px) {
  .slides {
    height: 30vh;
  }
}
/***** maintenance overlay ******/
.maintenance {
  display: inline-block;
  position: absolute;
  top: 10vh;
  left: 10vw;
  right: 10vw;
  width: 80%;
  height: 80%;
  border-radius: 40px;
  background-size: 25%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url(../img/screwdriver3.svg);
  background-color: rgba(220, 180, 0, 0.75);
}
.maintenanceTitle {
  position: absolute;
  bottom: 10vh;
  width: 100%;
  font-size: 60px;
  text-align: center;
}
