.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {
  --text: #36454f;
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

* {
  font-family: "Ubuntu", sans-serif;
  color: var(--text);
  text-decoration: none;
}

body {
  margin: auto;
  width: 85%;
}

h1 {
  text-align: center;
}

h2 {
  font-size: 1.5rem;
}

a {
  font-size: 1.2rem;
}

.header-component {
  font-size: 1.8rem;
  text-align: center;
  text-decoration: underline;
}

#multiplesof8 {
  max-width: 1000px;
  max-height: 562.5px;
  width: auto;
  height: auto;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.topline {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

#bdilinks {
  font-size: 1.5rem;
  padding: 8px;
  margin: 8px;
}

.chicago_series {
  display: grid;
  gap: 16px;
}

/*---------------Category links at the top--------*/
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.categories h2 a {
  font-size: 1.5rem;
  text-decoration: none;
}

/*----------For All Sections-------------*/
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.container div a {
  font-size: 1.25rem;
  text-decoration: none;
  color: black;
}

.container:nth-of-type(even) {
  background-color: #ffe4c4;
  padding: 1rem;
}

.container:nth-of-type(odd) {
  background-color: lightgray;
  padding: 1rem;
}

/* --------------Psuedo Classes-----------------*/
.container div a:hover {
  text-decoration: underline;
}

h2 a:hover {
  text-decoration: underline;
}

/*----------------------------------------*/
footer {
  margin: auto;
  padding: 1rem 0;
}

@media only screen and (max-width: 525px) {
  h2 {
    font-size: 1.25rem;
  }
  .container div a {
    font-size: 0.9rem;
  }
}
/* ------------ Return Home Link ----------*/
.return_home {
  background-color: #912f56;
  display: inline;
  padding: 5px;
  margin-bottom: 10px;
}

.return_home a {
  text-decoration: none;
  color: White;
}/*# sourceMappingURL=styles.css.map */