.contenedor {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-family: 'Nunito', sans-serif;
}

.card{
    width: 200px;
    padding: 10px;
    background: rgb(47, 47, 204);
    outline: solid 1px slategray;
    box-shadow:  3px 3px 3px rgb(99, 99, 99);
    border-radius: 10px;
    text-decoration-color: white;
    text-align: center;
    cursor: pointer;
}

.card b{
    color: white;
}

.preLogin img {
    width: 250px;    
    height: 100px;
    margin: auto;
    margin-top: 20px;
}

.card img {
    width: 150px;    
    height: 150px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 50%;
    object-fit: cover;
}

#mostrar{
    display: none;
}

.boton {
    width: fit-content;
    background-color: rgb(40, 79, 187);
    color: white;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 5%;
}


