@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto');

:root{
    --fondo_O1: #030b26;
}

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: 100px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
}


.container{    
    
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.container .card{
    position: relative;
    width: 300px;
    height: 420px;
    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;
}

.container .card:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.container .card img{
    float: none;
    width: 33rem;
    height: 23rem;
    object-fit: contain;
}


.container .card h5{
    font-weight: 600;
}

.container .card p{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 300;
}

.container .card a {
    font-weight: 900;
    text-decoration: none;
    color: #eeeeee;
}
.linea{
    border-top: 5px solid #3498db;
    margin-bottom: 20px;
   
}
.overlay{
    position: absolute;
    bottom: 0;
    left: 00;
    background: #3498dbf8;
    width: 100%;
    height: 0%;
    transition: .5s ease;
}
.card:hover .overlay{
    height: 100%;
}
.boton-contactar-perfil{
    background-color:#2368A7;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    padding: .5rem 3rem;
    text-align:center;
    margin-top:2rem;
    display:inline-block;
    border:none;
}
.mifooter{
    width: 100%;
    height: 30px;
    margin: auto;
    background: var(--fondo_O1);
}
.mifooter p{
    color: white;
    margin: auto;
    font-size: 10px;
    text-align: center;
    line-height: 30px;
}































































