@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;
}


a:link     { text-decoration: none;
             color: #3498db;
           }
a:visited  {
            text-decoration: none;
            color: #3498db;
           }



  .menu{
   text-align: center;
   margin-left: 5%;
   margin-right: 5%;
   margin-bottom: 2%;
   
   }

.pueblos {
        margin-left: 1%;
        margin-right: 1%;
        text-decoration:none;
        display: inline-block;
	text-align: center;
        font-family:"Oswald"; 
        font-size:18px;
        padding:6px;
     }


.title{
    text-align: center;
    font-size: 40px;
    color: #3498db;
    margin-top: 4%;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
}


.foto-principal {
    max-width: 1200px;
    justify-content: center;
    margin: auto;
    margin-bottom: 2%;
    display: flex;



}

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

.container .card{
    width: 330px;
    height: 430px;
    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{
    width: 330px;
    height: 220px;
}


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

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

.container .card a {
    font-weight: 500;
    text-decoration: none;
    color: #3498db;
}
































































