body {
  /* margin: 0;
  padding: 0;
  background: rgb(34, 34, 34);
  font-weight: 600;
  font-family: sans-serif;
  color: white; */
  height: 100%;
}

/* Navigation css */

.bgcolor {
  background: rgba(27, 173, 180, 0.8);
  position: fixed;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 1rem;
  position: relative;
}

.navBtn a:hover {
  color: #000;
}

.navBtn a::before {
  content: '';
  display: block;
  height: 5px;
  background: black;
  position: absolute;
  top: -0.3em;
  left: 0;
  right: 0;
  transform: scale(0, 1);
  transition: transform ease-in-out 250ms;
}

.navBtn a:hover::before {
  transform: scale(1, 1);
}

.content {
  width: 80%;
  margin: 4rem auto;
  position: relative;
  overflow: none;
  min-height: 100%;
}

/* .dropdown-toggle::after {
  display: none !important;
} */
/* end of navigation css */

/* start of card */

.content {
  width: 1200px;
  margin: 10rem auto;
}

.card-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: rgba(45, 186, 252, 0.651);
  box-shadow: 5px 5px 10px rgba(118, 212, 243, 0.521);
  color: #fff;
  padding: 0.6rem 0 0 2.5rem;
  margin-top: 2rem;
  border-radius: 10px;
}

.actionBtn li {
  display: block;
  /* margin: 0.5rem; */
  text-decoration: none;
}

.actionBtn a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
  color: white;
  padding: 0.5rem;
  width: 150px;
  border-radius: 10px;
  box-shadow: inset 4px 5px rgba(255, 255, 255, 0.5);
  /* background-color: darkgray; */
}

.actionBtn a:hover {
  color: black;
  background-color: rgba(0, 0, 0, 0.3);
}

.textContent {
  grid-column: 1/2;
}

.viewBtn {
  background-color: gray;
}

.editBtn {
  background-color: gray;
}

.deleteBtn {
  background-color: red;
}

.jumbotron {
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .content {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .showBrand {
    display: none !important;
  }
}
