/* Header styles */
header {
  padding: 25px 25px 10px 25px;
  margin-bottom: 45px;
}

header div h1{
  font-weight: bold;
  font-size: 90px;
  margin-bottom: 20px;
  line-height: 50px;
  letter-spacing: 15px;
  font-family: "Vibes", cursive;
}

header div h2 {
  font-size: 35px;
  font-family: "Fjalla One", sans-serif;
}

.top-row {
  letter-spacing: 25px;
  line-height: 45px;
}

.bottom-row {
  letter-spacing: 10px;
  line-height: 25px;
  margin-bottom: 15px;
}

.description {
  font-family: "Spartan", sans-serif;
  margin-top: 25px;
  font-size: 18px;
}
/* end Header styles */

/* Get Cat button */
#catGet {
  font-family: "Spartan", sans-serif;
  transition: 0.3s;
}

#catGet:hover {
  background-color: #5B21B6;
}
/* end Get Cat styles */

/* Save Cat button */
#saveCat {
  font-family: "Spartan", sans-serif;
  transition: 0.3s;
}

#saveCat:hover {
  background-color: rgba(91, 33, 182, 0.2);
  color: white;
}

/* style cat gallery */
.gallery-line {
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap; 
}

.gallery-line > span {
  position: relative;
  display: inline-block;
}

.gallery-line > span:before,
.gallery-line > span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9999px;
  height: 4px;
  background: #fff;
  opacity: 0.5;
}

.gallery-line > span:before {
  right: 100%;
  margin-right: 15px;
}

.gallery-line > span:after {
  left: 100%;
  margin-left: 15px;
}

#cat-gallery {
  font-size: 28px;
  font-family: "Spartan", sans-serif;
}


/* for footer issue */
main {
  padding-bottom: 60px;
}

/*Footer basic CSS*/
footer {
  width: 100%;
  /* for footer issue */
  height: 100%;
  padding: 10px 5px;
  object-position: bottom;
  bottom: 0;
  font-family: "Spartan", sans-serif;
}
  
  
footer div {
  text-align: center;
  padding: 10px;
  line-height: 10px;
}
  
footer a {
  color:red;
}

  
