/* 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." */

body {
  background-color: white;
  color: black;
  font-family: "Baskerville", Serif;
}


.centered {
	position: fixed;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: Verdana;
}

.center { display: block; margin-left: auto; margin-right: auto; width: 50%; }


.btn-group button {
  background-color: #A63AA1; /* Purple background */
  border: 1px solid purple; /* Purple border */
  color: black; /* Black text */
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
  font-family: Serif;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #A1139A;
}

