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


/*header style*/
h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 72px;
  background-color: black;
  color: white;
  font-variant: small-caps;

}


/*navigation bar style, flex basically lays it out as a grid of one row*/
.navbar {
  display: flex;
  flex-wrap: wrap; /* let items wrap to new lines */
  justify-content: center; /* center each row under the one above */
  gap: 0.5rem; /* gutter between buttons/rows */
  padding: 0.5rem;
  width: 100%;
}
/*style of the individual buttons, "anchors"*/
.navbar a {
  flex: 0 0 150px; /* fixed total width = 150px */
  display: flex; /* make the <a> a flex container */
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  width: 150px; /* explicitly set width */
  height: 3rem; /* or whatever height you like */
  padding: 0 0.5rem; /* small horizontal padding inside */
  box-sizing: border-box;
  background: black;
  text-decoration: none;
  font-family: "inky_thin_pixelsregular";
  font-size: 1.5rem;
  position: relative;
  transition: background 100ms;
  white-space: nowrap;
  overflow: hidden;
  color: white;
  border: outset;
  border-radius: 10px;
  border-color: rgb(87, 18, 87);
}


body {
  font-size: 14px;
  background-color: #5E5C5C;
  color: white;
  font-family: Verdana;
}


