body{
    background-color: rgb(19, 1, 22);
    background-image: url("prplespace.png");
}

#logo{
      display: flex;
  justify-content: center;
}

#logogif{
    max-width: 50%;
}


/*nav bar */

ul {
  list-style-type: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  background-color: rgb(19, 1, 22);
  
  max-width: fit-content;
  text-align: center;
  border: 3px dotted #e7e7e7;
  border-radius: 12px;
  
}

li {
  float: left;
  
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a img {
  padding-right: 4px;
}

li a:hover {
  background-color: rgb(132, 66, 117);
}

/*main content*/

main{
 background-color: rgb(19, 1, 22);
  margin: auto;
  margin-top: 10px;
  width: 65%;
  
  border: 3px solid white;
  border-radius: 12px;
}
#content1 {
  color: white;
  padding: 8px;
}
#content1 h2 {
  color: #e7e7e7;
  text-align: center;
}

/*site updates section*/

#site-updates {
  background-color: blueviolet;
  border: 3px dotted magenta;
  border-radius: 12px;
  max-width: 190px;
  margin-right: 30px;
  display: block;
 float: right;
 

}