.ast-mobile-header-wrap .ast-above-header-bar, .ast-above-header-bar .site-above-header-wrap {
    min-height: 50px;
    background-color: #75295A;
}

.site-below-footer-wrap {
    background-color: #75295a;
    background-image: none;
    min-height: 80px;
    padding: 10px;
}

.pie {
  text-align: center;
}

.pie a{
  color: antiquewhite;
}

.pie a:hover{
  color: #f2c993;
}

.tag {
   animation: fadeInAnimation ease 3s;
   animation-iteration-count: 1;
   animation-fill-mode: forwards;
}

.target-image {
  transition: filter 2s;
}
.target-image:hover {
 filter:sepia(60%);  
}

.entrada {
   animation: fadeInAnimation ease 3s;
   animation-iteration-count: 1;
   animation-fill-mode: forwards;
}


   @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
