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


.container{
    width: 100%;
    max-width: 1200px;
    height:auto;
    display: flex;
    flex-wrap: wrap;
    text-align: justify;
    margin: auto;

}

.container .card{
    width: 60%;
    height:auto;
    /*border-radius: 8px;*/
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: auto;
    text-align: justify;
    transition: all 0.25s;
    margin-bottom: 25px;
    padding: 20px;
}

.container .card:hover{

    box-shadow: 0px -1px 16px 8px rgba(0, 0, 0, 0.2);
}

.container .card img{
    width: 330px;
    height: 220px;
}

.container .card h4{
    font-weight: 600;
    text-align: center;
}
.container .card h2{
    font-weight: 100;
    text-align: left;
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    margin-top: 15px;
}

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

.container .card a {
    font-weight: 500;
    text-decoration: none;
    color: #3498db;
}
.card .list{
    text-align: left;
    margin-left:50px;
}































































