/* @override 
	https://jorgecocompech.rocks/css.php?* */

@charset "UTF-8";
:root {
  --grid-gap: 30px;
  --grid-min: 175px;
  --grid-items: auto-fill;
}




#app a {
  color: #4c4f4d;
  text-decoration: none;
  
}

#app h1 {
  font-size: 25px;
  color: white;
}


#app h2 {
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
font-family: 'Manrope', sans-serif;  
}

#app h2 a{
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
font-family: 'Manrope', sans-serif;  
}

#app h3 {
  font-size: 12px;
  margin-bottom: 5px;
font-family: 'Manrope', sans-serif;  
}

#app h4 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
}

#app p {
  margin-bottom: 16px;
  line-height: 1.5em;
  color: #1ed760;
  font: 'Manrope', 'Arial', monospace;

}

#app code {
  display: block;
  font-family: monospace;
  font-size: 14px;
  color: #1ed760;
  border-left: 2px solid rgba(25, 20, 20, 0.75);
  padding-left: 10px;
}
#app code span {
  color: white;
}
#app code strong {
  background-color: #191414;
  padding: 2px;
}

#app header {
  display: flex;
  align-items: center;
  padding: 20px 4%;
  margin-bottom: 20px;
  background: #343a40;
}


#app h2 {
  margin-left: 10px;
}



@media screen and (max-width: 768px) {
  #app header {
    flex-flow: column;
  }
  
  #app header h1, #app header h2, #app header p,#app header img, #app header h2 a  {
    width: 75%;
    font-size:100%;

  }
  #app header img {
  width: .5em;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}
}
@media screen and (max-width: 768px) {
  #app header h1, #app header h2, #app header p,#app header img, #app header h2 a  {
    width: 100%;
    font-size:90%;
  }
  
  #app header p {
    text-align: right;
  }
  
    #app header img {
  width: .75em;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}
}
@media screen and (max-width: 768px) {
  #app header p {
    text-align: left !important;
    margin-top: 10px;
    text-indent: 63px;
  }
  
    #app header img {
  width: .5em;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}
}
#app header img {
  width: 2.1em;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

#app main {
  display: grid;
  grid-template-columns: repeat(var(--grid-items), minmax(var(--grid-min), 1fr));
  grid-gap: var(--grid-gap);
  counter-reset: rank;
  margin: 4%;
}
#app main article {
  counter-increment: rank;
  position: relative;
  background: #55333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  -webkit-animation: mouseOut 0.3s ease-in;
          animation: mouseOut 0.3s ease-in;
}
#app main article .image {
  position: relative;
  width: 100%;
}
#app main article .image:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
#app main article .image:before {
  content: '•••';
  font-size: 24px;
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
#app main article .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
}
#app main article .image img.active {
  -webkit-animation: imageFadeIn 0.5s ease-in forwards;
          animation: imageFadeIn 0.5s ease-in forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#app main article .description {
  padding-bottom: 10px;
}
#app main article .description h3, #app main article .description p {
  padding: 0 10px;
}
#app main article .description p.artist {
  color: #007bff;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 0;
  font-weight: bold;
}
#app main article .description p.artist:before {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  margin-bottom: 4px;
  background: #222129;
}
#app main article:before {
  content: "#" counter(rank);
  display: block;
  width: 25px;
  height: 20px;
  line-height: 20px;
  background: rgba(34, 33, 41, 0.75);
  color: white;
  position: absolute;
  z-index: 20;
  right: 0px;
  top: 0px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
}
#app main article .playcount {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 12px;
}
#app main article .playcount span {
  position: relative;
  display: block;
  height: 2px;
  background: #007bff;
}
#app main article:hover {
  -webkit-animation: mouseOver 0.3s ease-in forwards;
          animation: mouseOver 0.3s ease-in forwards;
}

@-webkit-keyframes mouseOver {
  0% {
    top: 0;
  }
  100% {
    top: -5px;
  }
}

@keyframes mouseOver {
  0% {
    top: 0;
  }
  100% {
    top: -5px;
  }
}
@-webkit-keyframes mouseOut {
  0% {
    top: -5px;
  }
  100% {
    top: 0;
  }
}
@keyframes mouseOut {
  0% {
    top: -5px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes imageFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes imageFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.card-enter {
  opacity: 0;
}

.card-enter-to {
  opacity: 1;
}

.card-enter-active {
  transition: opacity 0.3s ease-in;
}