/* 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." */
html{
    cursor: url("/common/sm64cursor.png"), auto;
}
html:active{
  cursor: url("/common/sm64cursorclick.png");
}
/*link decoration*/
::selection{
  background-color: royalblue;
  color: gold;
  text-decoration: underline wavy darkblue 1px;
}
a
{
  color: lightskyblue;
}
body {
  background-image: url(space.png);
  color: ghostwhite;
  font-family: Helvetica;
  height: 100vh;
  overflow:scroll;
}
.movingbackground {
  background-image: url(crabpulsar.gif);
  color: ghostwhite;
  font-family: Georgia, 'Times New Roman', Times, serif;
  height: 100vh;
  overflow:scroll;
  animation: MoveBackground 50s linear infinite;
}
@keyframes MoveBackground{
  from{
    background-position: 0,0;
  }
    to{
      background-position: 100%,500%;
    }
}
.headerimg
{
  width:75vw;
}
.title
{
  font-family: 'Papyrus', 'Impact', 'fantasy';
  text-shadow: 5px 1px 2px darkred;
  color: orangered;
  text-align: center;
}
.title2
{
  font-size: 2EM;
  text-align: center;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
nav
{
  position: absolute;
  top: 187px;
  background-color: rgba(64, 64, 64, 0.875);
  border-style: double;
  border-color: rgba(128, 128, 128, 1);
  border-width: 5px;
  border-radius: 6.25px;
  margin-right:75%;
  margin-left:12.5%;
  height: 75%;
  display: flexbox; 
}
aside
{
  position: absolute;
  top: 187px;
  background-color: rgba(64, 64, 64, 0.75);
  border-style: double;
  border-color: rgba(128, 128, 128, 1);
  border-width: 5px;
  border-radius: 6.25px;
  margin-left:75%;
  margin-right:12.5%;
  height: 75%;
  display: flexbox; 
}
table,tr
{
  margin-left: auto; 
  margin-right: auto;
  border-style: double;
  border-width: 2px;
  text-align: center;
}
.middlebox
{
  background-color: rgba(64, 64, 64, 0.75);
  border-style: ridge;
  border-color: rgba(128, 128, 128, 1);
  border-width: 5px;
  border-radius: 25px;
  position: absolute;
  top: 187px;
  margin: auto;
  left: 25%;
  width: 50%;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-align: center;
}
.middleboxbright
{
  background-color: rgba(0, 0, 0, 1);
  border-style: ridge;
  border-color: yellow;
  border-width: 5px;
  margin: 0 auto;
  width: min-content;
  text-align: center;
  text-shadow: 5px 5px 0px darkblue;
}
.lesserbox
{
  a
  {
    color: darkblue;
  }
  font-family: 'Courier New', Courier, monospace;
  margin: 10px;
  color: black;
  background-color: lightgray;
  border-style: ridge;
  border-color: rgba(255, 255, 255, 1);
  border-width: 5px;
  border-radius: 0.125px;
  display: flexbox; 
}
.planets
{
  margin-left: auto;
  margin-right: auto;
  display: grid;
  clear: both;
  width: 8.33333333333%;
  align-items: center
}
.celobject
{
  margin-left: auto;
  margin-right: auto;
  /*content: "";*/
  display: grid;
  align-items: center;
  border: none;
}
/*.sun*/
/*{*/
    /*position: relative;*/
    /*right: 32%;*/
/*}*/
.mercury
{
    /*right:  19.2%;
    bottom: 50%;
    position: relative;*/
}