/*@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto');*/


html, body{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

.title{
    text-align: center;
    font-size: 40px;
    color: #6a6a6a;
    margin-top: 0px;
    font-weight: 100;
   /* font-family: 'Roboto', sans-serif;*/
}


.contenedor{
    width: 100%;
    /*max-width: 1200px;*/
    max-width: 1200px;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.contenedor a{
    text-decoration: none;
}

.contenedor .tarjeta{
    /*width: 330px;
    height: 330px;*/
    width: 250px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    transition: all 0.25s;
}

.contenedor .tarjeta:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.contenedor .tarjeta img{
    /*width: 330px;
    height: 220px;*/
    width: 250px;
    height: 167px;
}


.contenedor .tarjeta h5{
    font-weight: 200;
    background: rgb(93, 173, 226);
}

.contenedor .tarjeta p{
    padding: 0 1rem;
    /*font-size: 1rem;
    font-weight: 300;
    line-height: 1rem;*/
    font-size: .75rem;
    font-weight: 200;
    line-height: .75rem;
}

.contenedor .tarjeta a {
    font-weight: 500;
    text-decoration: none;
    color: #3498db;
}

#subirBtn {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 0%;
    z-index: 99;
    font-size: 1rem;
    border: none;
    outline: none;
    background-color: rgba(220, 20, 60, 0.7);
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
}

#subirBtn:hover {
    background-color: #555;
}

span.btn-danger8, div.bg-danger8{
background: rgba(220, 20, 60, 0.8);
color: white;
}
span.btn-primary8, div.bg-primary8{
background: rgba(30, 144, 255, 0.8);
color: white;
}
