body {
  background-color: #fdfdfd;
  /* background-image: url("bg3.png"); */
  font-size: 12pt;
  font-weight: 500;
}

.nunito {
  font-family: "Nunito", sans-serif;
  font-style: normal;
}

.wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
  margin-top: 3em;
  margin-left: 3em;
}

.main {
  min-width: 600px;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.sidebar {
  width: 180px;
  height: fit-content;
  overflow: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 5%;
  margin: 0;
  text-align: center;
  border-right: 1px solid black;
  font-size: 13pt;
}

.sidebar, 
.main {
  /* border: 4px solid #5CA385; */
  /* background-color: white; */
  /* border-radius: 10px; */
  color: #3B3B3B;
  padding: 15px;
  font-family: "Nunito";
}

.breeds {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1em;
  margin-top: 0;
}

.breedlist {
  padding: 5px;
  width: 200px;
  text-align: left;
}

h1 {
}

h2 {
  font-size: 30pt;
  display: inline;
  letter-spacing: 3pt;
  font-style: italic;
}

h3 {
  border-bottom: 1px solid;
  margin: 0;
  padding: 0;
}

/* ---------- reg link styling ---------- */
a:link {
  color: #0458AB;
  text-decoration: underline dotted;
  cursor: help;
  transition: color 0.2s;
}

/* visited link */
a:visited {
  color: #0458AB;
}

/* mouse over link */
a:hover {
  text-decoration: underline dotted;
  color: #616161;
}

/* selected link */
a:active {
  color: blue;
}

/* ---------- NAV link styling ---------- */
 /* unvisited link */
a.nav:link {
  color: #3B3B3B;
  display: block;
  padding: 2px;
  margin: 4pt;
  text-decoration: none;
  cursor: help;
  transition: background-color 0.5s;
  border-radius: 7pt;
  font-weight: 600;
  border-bottom: 0px;
}

/* visited link */
a.nav:visited {
  color: #3B3B3B;
}

/* mouse over link */
a.nav:hover {
  color: #3B3B3B;
  background-color: #EFEFEF;
}

/* selected link */
a.nav:active {
  color: blue;
} 