/*
 *     Copyright (C) 2023 Yeily Calderón M.
 *
 */

 body {
    background-color: #00543a;
 }

[v-cloak] {
    display: none;
}

.icono-gigante {
    font-size: 10rem;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .3s;
}

.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */
{
    opacity: 0;
}

.bounce-enter-active {
    animation: bounce-in .3s;
}

.bounce-leave-active {
    animation: bounce-in .2s reverse;
}

.color-verde-IG {
    color: #00543a;
}

.color-naranja-IG {
    color: #ffb806;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Estulo de los cards */

.ycards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
}

.ycard {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    overflow: hidden;
    margin: 10px;
    padding: 20px;
    font-size: large;
}

.ycard h1 {
    font-weight: bold;
}

.ycard img {
    margin: 5px;
}

.precio {
    color: #ffb806;
    font-weight: bold;
}

.logo {
    width: 200px;
}

.box-titulo {
    position: relative;
    height: 180px;
    margin: 10px;
}

.titulo {
    position: absolute;
    font-size: 3rem;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: bold;
}

@media screen and (max-width:768px) {
    .ycards {
        grid-template-columns: repeat(3, 1fr);
    }

    .ycard {
        font-size: small;
    }

    .logo {
        width: 100px;
    }

    .box-titulo {
        height: 90px;
        margin: 5px;
    }

    .titulo {
        text-align: end;
        font-size: larger;
    }
}

/* fin estilo de las cards */