/* SECCION TARJETAS */

.main_index{
    background-color: #181D31;
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 10px;
    padding-bottom: 100px;
}

.contenedor_tarjetas{
    width: 100vw;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.tarjeta_index{
    background-color: #E6DDC4;
    height: 400px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding-bottom: 20px;
    border: 5px solid #678983;
    box-sizing: content-box;
}

.imagen_tarjeta{
    width: 350px;
}

.boton_tarjeta{
    height: 40px;
    width: 100px;
    background-color: #181D31;
    border-radius: 10px;
    list-style: none;
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-shadow: 3px 3px #678983;
}

.boton_tarjeta:link, .boton_tarjeta:visited {
    color: #eeebe3;
    text-decoration: none;
}