/* 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 {
  background-image: url("mxjfiles-stars-once.gif");
  background-size: 100%;
}

body {
  background-color: #755A43;
  width: 75%;
  border: 2px solid #FCE98B;
  padding: 0;
  margin: 0 auto;
text-align: center;
}
ul {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  width: 70px;
  background-color: #DEBA2A;
   height: 10; /* Full height */
  position: fixed; /* Make it stick, even on scroll */
  overflow: auto; /* Enable scrolling if the sidenav has too much content */
}
li a {
  display: block;
  color: black;
  padding: 10px 16px;
  text-decoration: none;
}
li a:hover {
  background-color: #773E85;
  color: white;
}
.container {
  display: inline-grid;
  background-color: #773E85;
  padding: 10px;
}
.container div {
  background-color: #f1f1f1;
  border: 1px solid black;
  padding: 10px;
  font-size: 30px;
  text-align: center;
}