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

h1 {
  color: rgba(258,233,238);
  font-family: lucida;
  font-weight: normal;
  font-size: 400%;
  text-align: center; /* Centers header content horizontally */
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
}

h2 {
  color: rgba(258,233,238);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-weight:400%;
  text-align: center; /* Centers header content horizontally */
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
}

h3 {
  color: rgba(258,233,238);
  font-family: lucida;
  font-weight: bold;
  font-size: 150%;
  text-align: center; /* Centers header content horizontally */
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
}

a {
  flex: 1;
  text-decoration: none;
  outline-color: transparent;
  text-align: center;
  justify-content: center; /* Horizontal centering */
  align-items: center; 
  line-height: 3;
  color: rgba(258,233,238);
}

body {
  background-color: rgba(80,48,78);
  font-family: Lucida;
}
