html {
  scroll-behavior: smooth;
}

/* navbar styles */

.navbar {
  z-index: 1;
}

nav.bg-light {
  background: transparent !important;
}

.navbar a.navbar-brand {
  color: white;
}

.navbar a.navbar-brand:hover {
  color: rgb(230, 225, 225);
}

#nav-links .nav-item a.nav-link {
  color: white;
}

#nav-links .nav-item a.nav-link:hover {
  color: rgb(230, 225, 225);
}

/* landing styles */

#landing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1522276498395-f4f68f7f8454?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=60");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#landing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);

}

#landing .content {
  width: 900px;
  height: 400px;
  z-index: 2;
}

#landing .content p {
  font-size: 2em;
}

/* breeds section */

#breedsList-section {
  margin-top: 100vh;
  width: 100%;
}

/* social media styles */

#social-media {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

#social-media li {
  padding: 10px 20px;
}

#social-media li a {
  color: white;
  font-size: 2em;

}

#social-media li a:hover {
  color: rgb(208, 221, 217);

}

.copy-rights {
  background-color: #353434;
}