html {
  overscroll-behavior: none;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: Times, serif;
  background: black;
  overflow: hidden;
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  opacity: 0.1;
}


header {
  width: 100%;
  background: none;
  text-align: center;
  color: black;
  position: fixed;
  top: 0;
  width: 100vw;
  padding-top: 20px;
  z-index: -1;
}

main {
  z-index: -15;
  width: 100vw;
  height: 100vh;
  position: fixed;
  bottom:0px;
  right:0px;
  background: no-repeat center fixed;
  opacity: 0.85;
}

a, h2 span {
  color: black;
  padding: 5px;
  background: #f2f2f2;
  text-decoration: none;
  cursor: pointer;	
}

h1, p {
  margin: 0px;
  padding: 0px;
}

button {
  margin-bottom: 12px;
}

.divness {
        overflow-y: scroll;
        height:92vh;
        padding: 10px;
        align-items: center;
        color: black;
        width: 92vw;
        text-align: left;
        margin: 20px auto;
        background-color: white;
        opacity: 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        line-height: 1.6;
        font-weight: normal;
        box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.6);
      }

.divness h2 {
        padding: 0px;
        margin: 0px;
        font-weight: normal;
      }


.container {
  display: grid; 
  grid-template-columns: 1fr 30%; 
  grid-template-rows: 1fr; 
  gap: 10px 10px; 
  grid-template-areas: 
    ". ."; 
  padding: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.closeDiv {
  color: black;
  position: fixed; 
  top: 0;
  right: 0;
  z-index: 10;
  margin: 0.5em;
  background: white;
  border: 1px solid black;
}

.goose {
  width: 70%;
}

hr {
  border: none;
  border-bottom: 1px solid black;
  padding: 0px;
  margin:0px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.photos {
  padding-top: 20px;
  margin: 0 auto;
}

.photos img {
  width: 49.5%;
}

header, a:hover {
  animation: changeTxtColor ease;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-fill-mode: both;
}

footer {
  margin: 0px;
  color: black;
  text-align: left;
  position: fixed;
  bottom: 0;
  width: 100vw;
  padding: 20px;
}

.research {
  margin: 40px;
  padding: 30px;
  margin-right: auto;
  margin-left: auto;
  max-width: 700px;
  border: 1px solid black;
  background: white;
  color: black;
  line-height: 1.6;
  animation-duration: 3s;
  animation-name: slidein;
  box-shadow: 0px 0px 15px black ;
}

a:hover {
  cursor: pointer;
}


@keyframes changeTxtColor {
  0% {
    color: #ffffff;
  }

  50% {
    color: #ffffff;
  }
  
  100% {
    color: #ffffff; /*#F7C52B; #5D64CE;*/
  }

}



@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
  }
}






@media only screen and (max-width: 500px) {
  
  #myVideo {
    display: none;
  }
    
  .planet {
    width: 300px;
    height: 300px;
  }
  
  .goose {
  width: 100%;
}
  
  .headSlide {
        width: 100%;
        height: 80vh;
      }
  
  .divness {
        overflow-y: scroll;
        height: 80vh;
        padding: 20px;
        align-items: center;
        color: black;
        width: 80vw;
        text-align: left;
        margin-top: 22px;
    margin-bottom: 42px;
        background-color: white;
        opacity: 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        line-height: 1.6;
        font-weight: normal;
        box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.6);
      }
  
  
  .container {
  display: grid; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr; 
  gap: 12px 0px; 
  grid-template-areas: 
    "."; 
  }
  
  .photos img {
  width: 100%;
}

  p,
  div,
  h1 {
    font-size: 12pt;
  }
}
