main{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title{
    height: 150px;
    margin-top: 50px;
    background: url(../img/gallery/news.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.title .title__inner{
    color: white;
    width: 100%;
    height: 100%;
    background-color: #00000066;
    display: flex;
    align-items: center ;
    justify-content: center;
}
.title__inner h2{
    font-size: 4em;
    font-family: 'Gemunu Libre', sans-serif;
}
.articles{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ESTO CUANDO SE METAN MAS HAY QUE CAMBIARLO A 3 */
    grid-gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.post-img{
    height: 200px;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    transition: .2s;
}
article{
    max-width: 360px;
    box-shadow: 0 1px 6px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: .2s;
    border-radius: 5px;
}
article:hover{
    transform: translateY(-4px);
    box-shadow: 0 1px 14px 2px rgba(0, 0, 0, 0.1);
}

article .article-header{
    width: 100%;
    height: 200px;
    overflow: hidden !important;
    cursor: pointer;
}
article:hover .post-img{
    transform: scale(1.1);
}
article .article-content{
    line-height: 1.5;
    background:#efefef ;
    display: flex;  
    flex-direction: column;
    align-items: center;
    padding: 5px;
}
.article-content .article-title{
    font-size: 1.5em;
    text-align: center;
    margin-top: 20px;
}
.article-content p{
    margin: 10px;
}
.article-content .description{
    text-align: center;
    margin-bottom: 30px;
}



/* FOTOS */
.post-img-0{
    background: url(../img/noticias/premis_germinador2.jpg);
}
.post-img-1{
    background: url(../img/noticias/premis_eebe1.jpg);
}
.post-img-2{
    background: url(../img/noticias/49.jpg);
}
.post-img-3{
    background: url(../img/noticias/tungaloy.jpg);
}
.post-img-4{
    background: url(../img/noticias/bergadana.jpg);
}
.post-img-5{
    background: url(../img/noticias/hibridos.jpeg);
}
.post-img-6{
    background: url(../img/noticias/ISB2.png);
}
.post-img-7{
    background: url(../img/noticias/XerradaJoanAustria.jpg);
}
/* BOTON */

.button{
    background-color: #00acee;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 30px;
    margin: 0 auto;
    transition: 0.4s;
    border: solid 1px;
}
.button a{
    display: block;
    padding: 15px;;
    color: white;
}
  
.button:hover{
    color: #00acee;
    background-color: white;
    border-color: #00acee;
}

.button:hover a{
    color: #00acee;
}

@media (max-width:870px){
    .articles{
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width:600px){
    .articles{
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
    }
}