body {
  margin: 50px; /* margin around all items */
  font-size: 16px;
  font-family: "Courier New", "Times New Roman";
  color: #F4EFFA; /* text color */
  background-color: #2F184B;
  padding: 30px;
  border-radius: 8px;
}

html {
  background-color: #2F184B;
  background-image: url(darkspacebg.png);
  background-repeat: repeat;
  background-position: top right;
  background-attachment: scroll;
}

h1 {
  text-align: center;
  padding: 1em;
  border-style: dotted;
  border-width: 3px; /* thickness of border */
  border-left-width: 10px;
  border-right-width: 10px;
  border-color: #532B88;
}

#footers {
  text-align: center;
}

a:link {
  color: #9B72CF;
}

a:visited {
  color: #532B88;
}

button {
  background-color: #9B72CF;
  border: 2px solid #532B88; /* border size, style, and color */
  border-radius: 8px; /* rounded edges */
  color: #C8B1E4; /* color of text */
  font-size: 16px; 
  padding: 12px 20px; /* padding INSIDE box, around text */
  margin-top: 15px;
  transition-duration: 0.2s; /* controls how fast colors change on hover */
}

button:hover {
  background-color: #532B88; /* background color for hover state */
  border-color: #C8B1E4;
}

#buttons {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#headerimg {
  display: flex;
  align-items: center;
  justify-content: center;
}