.cat {
  margin: 25px auto;
  padding: 30px;
  box-sizing: content-box;
}
.cat-wrapper {
  margin: 25px auto;
  padding: 30px;
  box-sizing: content-box;
  border-width: 5px;
  border-style: solid;
  border-image: linear-gradient(to right bottom, #8705f1, #f9b73b);
  border-image-slice: 1;
}
.cat-image {
  margin-bottom: 25px;
}
.cat-image img {
  width: 100%;
}

.cat-name {
  font-weight: 600;
  margin: 10px auto;
}

.cat-stat {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  background-color: rgb(248, 245, 245);
  padding: 25px;
  border-bottom-right-radius: 60px;
}
.cat-hero {
  max-height: 75vh;
  min-height: 75vh;
}
.cats-nav {
  padding: 30px;
  box-shadow: 0 0 3px 3px rgb(246, 239, 239);
  border-radius: 15px;
}
.cats-nav li {
  list-style: none;
  margin: 10px auto;
}
.cats-nav li a {
  font-size: 18px;
}
.cats-stats {
  box-shadow: 1px 1px 3px 3px rgb(243, 240, 240);
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-radius: 15px;
  margin:25px 0;
}
.cats-stats section {
  border-bottom: 3px solid rgb(248, 244, 244);
  margin: 15px 0;
  padding: 10px;
}
.cats-stats section div {
    display: flex;
    flex-direction: column;
}
h2 {
  color: rgb(248, 182, 59);
  font-weight: 600;
  word-spacing: 2px;
  text-transform: uppercase;
}
section div small {
  color:gray;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 600px) {
  .cat {
    margin: 15px auto;
    padding: 10px;
    box-sizing: content-box;
    border-width: 5px;
  }
  h1 {
    margin: 10px auto;
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1rem;
  }
}
