#cards-container {
    display: flex;
    justify-content: space-evenly;
}

.card {
    border: 5px solid black !important;
    border-radius: 2%;
    /* margin: 50px; */
    outline: solid 5px #c53a04;
    box-shadow: -22px 23px 41px 0px rgba(0, 0, 0, 0.75);
    /* flex: 1; */
    /* width: 100px !important; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
    /* opacity: 0; */
}

/* Max Ancho card */
@media (min-width: 768px) {
    .card {
        max-width: 600px;
    }
}

.fighter-img {
    width: 90% !important;
    height: 300px !important;
    padding: auto;
    align-self: center;
}

/* Max Ancho imagen card en mobile-sm*/
@media (max-width: 550px) {
    .fighter-img {
        max-width: 300px;
    }
}

/* Max Ancho imagen card a partir de mobile-md*/
@media (min-width: 550px) {
    .fighter-img {
        min-width: 300px;
        max-width: 400px;
    }
}

.fighter-name {
    font-weight: bolder;
    text-align: center;
    font-size: larger;
    color: #1f271b;
    text-shadow: 3px 1px 6px #972d07, 3px 4px 1px #fde74c;
}

.icons {
    width: 6rem;
    /* border-radius: 50%; */
    border: 4px solid #fb8537;
    padding: 15px;
}

/* Max Ancho icons en mobile-sm*/
@media (max-width: 550px) {
    .icons {
        max-width: 5rem;
    }
}

.lineadecod {
    display: flex;
    justify-content: space-around;
}

.fighter-info {
    position: relative;
    bottom: 0;
    min-width: 100%;
    background-color: brown;
    padding: 0.75rem 0;
    text-align: center;
    color: white;
    font-size: larger;
}

.fighter-img:hover {
    animation: turn infinite 1s;
}

@keyframes turn {
    0% {
        transform: rotateY(0);
    }
    50% {
        transform: rotateY(180deg);
    }
}

@keyframes intro {
    0% {
        transform: translateX(-300px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
