/*
 * Want to change this website's styes? Learn more about CSS:
 * https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS
 */

body {
  margin: 0;
}

.pill-nav a {
  display: inline-block;
  color: gold;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 30px;
}

.pill-nav a:hover {
  background-color: steelblue;
  color: white;
}

.pill-nav a.active {
  background-color: black;
  color: white;
}

h1 {
  text-transform: uppercase;
  text-align: center;
  font-family: 'Ramaraja', serif;
  color: gold;
  text-shadow: 3px 2px black;
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  text-transform: uppercase;
  text-align: center;
  font-family: 'Abril Fatface', cursive;
  color: gold;
  text-shadow: 3px 2px black;
  font-size: 100px;
  letter-spacing: -1px;
  padding: 0px;
  margin: 0px;
}

h3 {
  text-transform: uppercase;
  text-align: center;
  font-family: 'Helvetica', serif;
  color: gold;
  font-size: 12px;
  letter-spacing: -1px;
}

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

#grad1 {
  height: 10000px;
  background-color: red; /* For browsers that do not support gradients */
  background-image: repeating-linear-gradient(black, steelblue 10%, lightblue 20%, black 90%); /* Standard syntax (must be last) */
}