.dog-breed {
  text-transform: capitalize;
  text-align: center;
  padding: 8px;
  margin: 8px;
}

.form-inline {
  position: absolute;
  top: 0;
  right: 0;
  margin: 8px;
  margin-right: 10px;
}

.navbar-default {
  background-color: #e2f5e0;
}

body {
  background-color: #cdebc1;
}

.dog-breed-name {
  width: 100px;
  border-right: 1px solid black;
  background-color: cornsilk;
  text-align: center;
}

.dog-breed-button {
  padding: 6px;
  margin: 5px;
  background-color: #ffcb05;
}

ul {
  list-style: none;
}

.dog-image {
  width: 100px;
  height: 80px;
}

.dog-breed-header {
  color: white;
  display: block;
  margin: 0 auto;
  margin-top: 56px;
  margin-bottom: 40px;
  width: 30%;
  height: auto;
  display: flex;
  justify-content: center;
}

.dog-breed-header img {
  width: 200%;
}

#modal-container {
  position: fixed;
  padding: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);

  /* to show it above other content */
  z-index: 999;

  /* to allow scrolling if the screen is not high enough */
  overflow: auto;

  /* this is used to center the modal */
  display: none;
  text-align: center;
}

#modal-container.is-visible {
  /* CSS for modal container - add your own desired CSS styles here */
  display: block;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paige-container {
  margin-top: 60px;
}

.dog-breed-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 60px;
  row-gap: 1em;
  margin-left: -25px;
}

.modal-body img {
  width: 100%;
}

.my-logo {
  width: auto;
  height: 40px;
}

.header-dog-image {
  position: absolute;
  top: 5px;
  right: 0;
}

.nav-link {
  color: black;
}

@media all and (max-width: 500px) {
  .dog-breed-list {
    grid-template-columns: 1fr;
  }
}

@media all and (min-width: 500px) and (max-width: 750px) {
  .dog-breed-list {
    grid-template-columns: 1fr 1fr;
  }
}
