/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

@import url('https://fonts.googleapis.com/css?family=Cookie');

html, body, div, span, applet, object, iframe,
 h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  font-family: monospace;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}


.content_Container  {
  top: -50px;
}
img {
  display: block;
  margin: 0;
}

input[type=checkbox] {
  display: none;
}

label {
  display: inline-block;
  margin-right: 1em;
  padding: 0.4em 0;
  cursor: pointer;
}

button {
  border: 10px solid #00FFAA;
  font-family: monospace;
  position: absolute;
  line-height: 60px;
  text-align: right;
  padding: 0 1.2em;
  background: #444;
  font-size: 24px;
  cursor: pointer;
  display: block;
  outline: none;
  height: 80px;
  width: 80%;
  top: 260px;
  margin: 0;
  left: 10%;
}

button:hover {
  background: #00FFAA;
}

input[type=checkbox] + label:before {
  display: inline-block;
  position: relative;
  background: #444;
  margin-right: 0;
  content: "";
  height: 16px;
  width: 16px;
  top: 1px;
}

input[type=checkbox]:checked + label:before {
  background: #00FFAA;
}

#load_screen{
  overflow: hidden;
  background: #111;
  opacity: 1;
  position: fixed;
  z-index: 1001;
  top: 0px;
  width: 100%;
  height: 1600px;
}

#load_screen > #loading{
  color: #fff;
  width: 120px;
  height: 24px;
  margin: 300px auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


.svg-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
}
.svg-wrapper svg {
  position: absolute;
  top: 0;
  width: 100%;
}
.svg-wrapper .moon-satelite {
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.8, 0.5, 0.2);
          animation-timing-function: cubic-bezier(0.5, 0.8, 0.5, 0.2);
}


.s2_Container {
	margin: auto;
	width: 40vh;
  padding-top: 2vh;
text-align: center;
}


.s2_Container p{
	font-size: 1vh;
  text-align: center;
}

.s2_Container img {
	width: 4vh;
	display: inline-block;
	margin: .2em;
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.0);
  border-radius: 5px;
}

.s3_Container {
	margin: auto;
  padding-top: 10vh;
}



.s4_Container {
  margin: auto;
    text-align: center;
    padding-top: 10vh;
}

.s4_Container img {
  margin: auto;
  padding: 1em;
  width: 20vh;
 display: inline;
}


#doodles {
  width: 25vh;
  margin: auto;
  display: inline;
  text-align: center;
}

#doodles img{
  width: 83px;
  height: 120px;
}



@keyframes twinkle {
  0% {
    transform: scale(1, 1);
    background: rgba(255,255,255,0.0);
    animation-timing-function: ease-in;
  }
  60% {
    transform: scale(0.8, 0.8);
    background: rgba(203,54,89,1);
    animation-timing-function: ease-out;
  }
  80% {
      background: rgba(121,225,211,1);
    transform: scale(1, 1);
  }
  100% {
    background: rgba(255,255,255,0.0);
    transform: scale(1, 1);
  }
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  display: inline-block;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #000;
  margin: auto;
  padding: 0;
  width: 100%;
}

.modal-content img {
  margin: auto;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}



.container {
  position: relative;
  height: 50vh;
  margin: 0;
}

.container img {
  width: 100%;
}

.scene {
  padding: 0;
  height: 62vw;
  margin: 0;
}

.fill {
  position: absolute;
  bottom: 5%;
  right: 5%;
  left: 5%;
  top: 5%;
}

.expand-width {
  width: 100%;
}

.border {
  border: 2px dashed #00FFAA;
}

.aspect {
}

.star_Layer {

}

.layer {
	width: 100%;
}
.layer:nth-child(1) {
}
.layer:nth-child(1) button {
  -webkit-transform: rotate(150deg);
}

.layer:nth-child(2) {
}
.layer:nth-child(2) button {
  -webkit-transform: rotate(120deg);
}

.layer:nth-child(3) {
}
.layer:nth-child(3) button {
  -webkit-transform: rotate(90deg);
}

.layer:nth-child(4) {
}
.layer:nth-child(4) button {
  -webkit-transform: rotate(60deg);
}

.layer:nth-child(5) {
}
.layer:nth-child(5) button {
  -webkit-transform: rotate(30deg);
}

.layer:nth-child(6) {
}
.layer:nth-child(6) button {
}

.second_Section {
background: url('../images/plop.png');
background-size: 100%;
background-repeat: no-repeat;
position: relative;
width: 100%;
height: 155vh;
margin-top: -16vh;
}

.third_Section {
float: left;
background: url('../images/thirdsection.png');
background-size: 100%;
background-repeat: no-repeat;
position: relative;
top: -3em;
width: 100%;
height: 90em;
}

.fourth_Section {
float: left;
background: url('../images/4thsection.png');
background-size: 100%;
background-repeat: no-repeat;
position: relative;
top: -3em;
width: 100%;
height: 90em;
}

.fifth_Section {
float: left;
background: url('../images/5thsection.png');
background-size: 100%;
background-repeat: no-repeat;
position: relative;
top: -3em;
width: 100%;
height: 90em;
}


.starry_Layer {
	background: linear-gradient(82deg, #79e1d3, #b84d5d, #103f55, #79e1d3, #b84d5d, #103f55);
background-size: 12% 30%;

-webkit-animation: starryGlow 20s ease infinite;
-moz-animation: starryGlow 20s ease infinite;
-o-animation: starryGlow 20s ease infinite;
animation: starryGlow 20s ease infinite;
}

@-webkit-keyframes starryGlow {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-moz-keyframes starryGlow {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-o-keyframes starryGlow {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@keyframes starryGlow {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}

.glowy {

  -webkit-animation: neonone 1.5s ease-in-out infinite alternate;
  -moz-animation: neonone 1.5s ease-in-out infinite alternate;
  animation: neonone 1.5s ease-in-out infinite alternate;
}

/*glow for webkit*/

@-webkit-keyframes neonone {
  from {
   filter: drop-shadow(1px 2px 8px  #ffd6de);
  }
  to {
   filter: drop-shadow(1px 2px 8px  #a2173d);
  }
}

/*glow for mozilla*/

@-moz-keyframes neonone {
  from {
   filter: drop-shadow(1px 2px 8px  #ffd6de);
  }
  to {
   filter: drop-shadow(1px 2px 8px  #a2173d);
  }
}

/*glow*/

@keyframes neonone {
  from {
   filter: drop-shadow(1px 2px 8px  #ffd6de);
  }
  to {
   filter: drop-shadow(1px 2px 8px  #a2173d);
  }
}


h1 {
  text-decoration: none;
  font-size: 6vh;
  color: #fff;
  font-family: Cookie;
  -webkit-animation: neon1 1.5s ease-in-out infinite alternate;
  -moz-animation: neon1 1.5s ease-in-out infinite alternate;
  animation: neon1 1.5s ease-in-out infinite alternate;
  text-align: left;
}

h2 {
	font-size: 4vh;
	color: #bd3559;
	font-family: Cookie;
	text-align: center;
}

.img_Container {
  margin: auto;
  padding: 2em;
  width: 50vh;
  text-align: center;

}
.img_Container img {
}

.icon_Container {
  margin: auto;
  text-align: center;
  width: 40vh;
}
.icon_Container  img {
  width: 30px;
  height: 30px;
}


#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

/*glow for webkit*/

@-webkit-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #bd3559, 0 0 70px #bd3559, 0 0 80px #bd3559, 0 0 100px #bd3559, 0 0 150px #bd3559;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #bd3559, 0 0 35px #bd3559, 0 0 40px #bd3559, 0 0 50px #bd3559, 0 0 75px #bd3559;
  }
}


/*glow for mozilla*/

@-moz-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #bd3559, 0 0 70px #bd3559, 0 0 80px #bd3559, 0 0 100px #bd3559, 0 0 150px #bd3559;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #bd3559, 0 0 35px #FF1177, 0 0 40px #bd3559, 0 0 50px #bd3559, 0 0 75px #bd3559;
  }
}


/*glow*/

@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #bd3559, 0 0 70px #bd3559, 0 0 80px #bd3559, 0 0 100px #bd3559, 0 0 150px #bd3559;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #bd3559, 0 0 35px #FF1177, 0 0 40px #bd3559, 0 0 50px #bd3559, 0 0 75px #bd3559;
  }
}


  @media (min-width: 1200px) {

   /* Styles for Small Laptop */

   .second_Section {
   height: 450vh;
   }

   .container {
     height: 115vh;
   }

   h1 {
     font-size: 12vh;
   }

   h2 {
     font-size: 10vh;
     padding: 4vh;
   }

   .s2_Container {
   	margin: auto;
   	padding: 10vh 2vh 2vh 6vh;
   	width: 90vh;
   }

   .s2_Container p{
   	font-size: 2em;
     text-align: center;
   }

   .icon_Container {
     margin: auto;
     width: 50em;
   }
   .icon_Container  img {
     width: 100px;
     height: 100px;
   }

   .s3_Container {
   	margin: auto;
   	padding: 28vh 2vh 2vh 6vh;
   }
   #doodles img{
     width: 276px;
     height: 400px;
   }

   .s4_Container {
     padding-top: 4vh;
   }

   .s4_Container img {
     width: 40vh;
    display: block;
   }

 }

 @media (min-width: 1600px) {

  /* Styles for Desktops */
  body {
    background: #000;
  }

}
