/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: Jersey20;
  src: url(/Jersey20.ttf) format("truetype");
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: url(Assets/SpaceScrolling.gif);
  color: white;
}
#spamtonBody {
  background-image: url(Assets/purpleGrid.gif);
  color: white;
}
#planetariumBody{
  height: 100%; overflow: hidden;
}
@keyframes TextFade {
  0% {color: rgb(255, 50, 50);}
  20% {color: rgb(255, 241, 50);}
  40% {color: rgb(108, 255, 50);}
  60% {color: rgb(0, 195, 255);}
  80% {color: rgb(162, 0, 255);}
  100% {color: rgb(255, 50, 50);}
}
h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  
  font-size: 100px;
  font-family: "Jersey20";
  background-image: url(Assets/RotatingEarth.gif);
  text-shadow: 0 0 25px yellow;
  background-size: 512px;
  background-repeat: no-repeat;
  background-position: center;

  -webkit-text-stroke: 1px rgb(229, 255, 0);

  animation-name: TextFade;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-family: "Jersey20";
  background-color: #001c36;
  
  margin: 0;
  width: 100%; 
  height: 35px;
  border: 1px solid white;
  
  color: black;
  -webkit-text-stroke: 0.05px rgb(255, 255, 255);
}
h3 {
  display: block;
  text-align: center;
  font-size: 22px;
  font-family: "Jersey20";
  background-color: #001c36;
  top: 0;
  position: sticky;
  
  margin: 0;
  width: 100%; 
  height: 25px;
  border: 1px solid white;
  
  color: black;
  -webkit-text-stroke: 0.05px rgb(255, 255, 255);
}
h4 {
  margin-bottom: -5px;
}
.BigHeader{
  position: absolute;
}
.mainPictures{
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 25px;
}
.navli{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  list-style-image: url(Assets/arrowList.png);
}

li {
  text-align: center;
  font-size: 20px;
  font-family: "Jersey20";
  background-color: #57c3ff;
  width: 90px;
  margin-bottom: 10px;
}
.mainDiv{
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.contentDiv{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 600px;
  background-color: black;
  border: 5px dashed #0000a8;
  padding: 10px;
}
.contentMusicDiv{
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 784px;
  background-color: black;
  border: 5px dashed #0000a8;
  padding: 10px;
  overflow-y: scroll;
}
.navDiv{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  
  margin-right: 35px;
  border: none;
}
.music{
  margin-bottom: 20px;
  padding: 10px;
  border: 2px dotted white;
}
.scrollDiv{
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: black;
  border: 1px dashed white;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 47.5%;
  height: 150px;
  margin: 5px;
}
#planetariumLink{
  text-decoration: none;
}