@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: #F0F1F7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
}

.tarjetas {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarjeta {
    background-color: #fff;
    border-radius: 3px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 220px;
    max-width: 100%;
}

.tarjeta img {
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 75px;
}

.tarjeta.activa {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1.3);
}

.tarjeta h4 {
    margin: 10px 0;
}

.tarjeta small {
    color: #777;
    display: block;
}

button {
    background-color: #f2ac00;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px 25px;
    margin-top: 5px;

    font-style: normal;
    font-weight: bold;
}

button:hover {
    border: 0;
    box-shadow: 0 2px 5px rgb(109, 199, 58);
    border-radius: 6px;
    background-color: #379700;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-fuentes{
    background-color: #31bd98;
}