html {
  scroll-behavior: smooth;
}

#mainNavigation {
  z-index: 100;
  height: 64px;
  width: 100vw;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  padding-top: 15px;
  padding-left: 30px;
}

.navElements {
  width: 60%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 45px;
  padding-left: 75px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-image: url("../images/navbar.png");
  background-size: cover;
  background-position: bottom left;
}

.navElementInner {
  padding-top: 48px;
}

.navElements a {
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  color: black;
}

.navElements a:hover {
  color: #ff0060;
}

a.activeLink {
  color: #002aff;
}

#space {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  background-image: url("../images/background-5.png"), url("../images/background-4.png"), url("../images/background-3.png"), url("../images/background-2.png"), url("../images/background-1.png");
  background-repeat: repeat;
  background-position: center;
}

.sections-container,
.section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section {
  position: fixed;
  top: 100vw;
}

.activeSection {
  top: 0px;
  -webkit-transition: 200ms;
  transition: 200ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.slideOut {
  top: 100vw;
  -webkit-transition: 200ms;
  transition: 200ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.navSubmenu {
  position: absolute;
  margin-left: -60px;
  display: none;
}

/*-------------Home Page CSS-------------*/
#home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#text {
  height: 150px;
  width: 100%;
  line-height: 150px;
  letter-spacing: 15px;
  text-align: center;
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-size: 40px;
  -webkit-animation: spaceText 5s ease-in-out alternate infinite;
          animation: spaceText 5s ease-in-out alternate infinite;
}

@-webkit-keyframes spaceText {
  from {
    letter-spacing: 20px;
  }
  to {
    letter-spacing: 40px;
  }
}

@keyframes spaceText {
  from {
    letter-spacing: 20px;
  }
  to {
    letter-spacing: 40px;
  }
}

.earth {
  position: relative;
  background-image: url("../images/planet.png");
  background-size: 100vh;
  background-repeat: no-repeat;
  background-position: -500px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  -webkit-animation-name: floating;
          animation-name: floating;
  -webkit-animation-duration: 2.7s;
          animation-duration: 2.7s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-backface-visibility: hidden;
}

.spaceHeader {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  50% {
    -webkit-transform: translate(2px, 8px);
            transform: translate(2px, 8px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  50% {
    -webkit-transform: translate(2px, 8px);
            transform: translate(2px, 8px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

.videoContainer {
  height: 100%;
  width: 100%;
  /*
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    */
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.embed-responsive {
  margin-left: -100%;
  text-align: center;
  position: absolute;
  left: 120%;
  right: 0;
  top: 50%;
  margin-top: -18.1%;
  padding-bottom: 42%;
  height: 0;
  overflow: hidden;
  /*
      display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    */
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
}

/*-------------Sections CSS-------------*/
.inactive {
  display: none;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.gridTall {
  display: block;
}

h3 {
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 3px;
}

h2 {
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 3px;
  color: white;
  font-size: 15px;
}

p {
  padding-top: 15px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
}

#exhibits, #tickets, #movies, #cafe, #NASA, #cafeTickets, #cafeReservations, #movieReservations, #movieTickets, #movieReservations {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 150px;
}

#exhibitsPuzzle {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 200px;
}

.section-content {
  padding: 0px 15px 0px 15px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 15px 0px 15px;
}

.section-navigation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.section-navigation-link {
  width: 100%;
  height: 100%;
}

button.secion-nav-button {
  cursor: pointer;
  width: 100%;
  border: none;
  padding: 15px 15px 15px 15px;
  font-family: 'Work Sans', sans-serif;
  color: black;
  letter-spacing: 3px;
}

button.secion-nav-button:hover {
  color: #ff0060;
  background-color: #bfbfc6;
}

.button1 {
  background-color: #6d1073;
}

.button2 {
  background-color: #5f0865;
}

.button3 {
  background-color: #4f0354;
}

/*-------------Exhibits CSS------------*/
.exhibits-container {
  padding: 0px 15px 0px 15px;
  width: 100%;
}

.exhibitsFlexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.exhibitTitleFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.exhibitTitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  padding: 15px 15px 15px 15px;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
}

h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 30px;
  padding-bottom: 10px;
  color: white;
  text-align: center;
}

.aircraft {
  height: 30vh;
  width: 30vw;
  background-image: url("../images/exhibits/aircraft.jpg");
  background-size: cover;
  background-position: center;
}

.airSpaceUniforms {
  height: 30vh;
  width: 30vw;
  background-image: url("../images/exhibits/airandspaceuniforms.jpg");
  background-size: cover;
  background-position: center;
}

.planetarium {
  height: 30vh;
  width: 30vw;
  background-image: url("../images/exhibits/planetarium.jpg");
  background-size: cover;
  background-position: center bottom;
}

.satelites {
  height: 30vh;
  width: 30vw;
  background-image: url("../images/exhibits/satelites.jpg");
  background-size: cover;
  background-position: center 40%;
}

.theGlassWorld {
  height: 30vh;
  width: 30vw;
  background-image: url("../images/exhibits/theworld.jpg");
  background-size: cover;
  background-position: center bottom;
}

.buildingASpaceship {
  height: 30vh;
  width: 30vw;
  background-image: url("../images/exhibits/relics.jpg");
  background-size: cover;
  background-position: center;
}

/*-------------Tickets CSS-------------*/
.tickets-container {
  height: 100%;
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #efefef;
}

.tickets-form {
  width: 75%;
  height: 100%;
  padding: 15px 15px 15px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tickets-form h1 {
  color: black;
}

.tickets-info-container {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tickets-image {
  background-image: url("../images/tickets/tickets.png");
  width: 100%;
  height: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.tickets-description {
  padding: 15px 15px 15px 15px;
  background-color: white;
  color: black;
  height: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tickets-form form label {
  display: inline-block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  padding: 10px 0px 0px 0px;
  margin: 0px;
}

input {
  width: 98%;
  border-radius: 1px;
  border: inset;
  padding: 5px 0px 5px 0px;
  margin-top: 5px;
}

input.checkInput {
  width: 15px;
}

input#submitButton {
  margin-top: 15px;
  background-color: #8d52e5;
  color: black;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 3px;
  font-size: 15px;
}

input.submitButtonStyle {
  border: none;
  margin-top: 15px;
  background-color: #8d52e5;
  color: white;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 3px;
  font-size: 15px;
}

input#submitButton:hover {
  background-color: #5f0865;
  cursor: pointer;
}

span.ticket-total-label, span.movie-total-label, .movie-total {
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 3px;
  font-size: 15px;
  display: inline-block;
  padding-top: 15px;
}

#ticket-total {
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 3px;
  font-size: 15px;
  display: inline-block;
  padding-top: 15px;
}

.ticketResFlexbox {
  margin-top: 250px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

#movieReservationSection {
  margin-top: 0px;
}

div#cafeReservationsSection.section-content.ticketResFlexbox {
  margin-top: 0px;
}

.theYearOfPluto {
  height: 350px;
  width: 250px;
  background-image: url("../images/movies/the-year-of-pluto.jpeg");
  background-size: cover;
  background-position: center;
}

.journeyOfApollo {
  height: 350px;
  width: 250px;
  background-image: url("../images/movies/journey-of-apollo.jpg");
  background-size: cover;
  background-position: center top;
}

.theSpaceShuttle {
  height: 350px;
  width: 250px;
  background-image: url("../images/movies/the-space-shuttle.jpg");
  background-size: cover;
  background-position: center;
}

.vegetarianBuffet {
  height: 350px;
  width: 250px;
  background-image: url("../images/cafe/vege.jpg");
  background-size: cover;
  background-position: center;
}

.standardBuffet {
  height: 350px;
  width: 250px;
  background-image: url("../images/cafe/standard.jpg");
  background-size: cover;
  background-position: center top;
}

.worldCuisines {
  height: 350px;
  width: 250px;
  background-image: url("../images/cafe/worldcuisine.jpg");
  background-size: cover;
  background-position: center;
}

.gridHovers {
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
}

#exhibitsPuzzle {
  margin-top: 0px;
  max-height: 100vh;
}

.gameFrame {
  border: none;
  width: 100vw;
}
/*# sourceMappingURL=styles.css.map */