

body {
    max-width:  80vw;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 15px;
    font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.25;
}


h1,
h2,
h3,
h4,
h5,
p,
ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

svg:not(:root) {
    overflow: hidden;
}

/* GALLERY BLOGPOSTS */

.gallery-blogposts{
    margin-bottom: 1vh;
}
.gallery-blogposts h3{
    display: block;
    margin: 10px 10px 10px 0;
}

/* GALLERY CATEGORY */
.gallery-category{

}

.gallery-category .card-category{
    display: grid;
    grid-template-columns: minmax(445px, 1fr) 1fr;
    row-gap: 10px;
    column-gap: 5px;
    width: 100%;

}

@media (width < 967px) {
    .gallery-category .card-category {
        grid-template-columns: 1fr;
        width: 50%;
        justify-items: center;
        row-gap: 10px;
    }
    .gallery-category .card-category img{

        width: 400px;
    }
    .gallery-category .card-category p{
        align-self: start;
        justify-self: start;
        font-size: 0.8em;
        width: 100%;
    }
}

.gallery-category .card-category h2{
    grid-column: 1/-1;
    width: 100%;
}
.gallery-category .card-category img{

}

.gallery-category .card-category p{
    align-self: start;
    justify-self: start;
    font-size: 20px;
    width: 100%;
}

/* HERO BANNER */
.banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;

}
@media (width < 967px) {
    .banner {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 10px;
    }
    .banner .image{
        grid-column: 1/-1;
        justify-self: center;
    }
    
}
.banner .hero{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}


.banner .hero .hero-button {
    align-self: end;
}



/* GENERAL FONT SIZE */

/* BANNER */
.banner .hero .hero-title {
    font-size: 2.5em;    
}

.banner .hero .hero-text {
    font-size: 1.7em;
}

.banner .hero .hero-button a{
    font-size: 2em;
}
/* GALLERY CATEGORY */
.gallery-category .card-category p{
    font-size: 1.5em;
}
.gallery-category .card-category h2{
    font-size: 2em;
}



@media (width < 967px) {
    .banner .hero{
        width: 100%;
        padding: 10px;
    }
    .banner .hero .hero-title {
        font-size: 1.5em;    
    }
    
    .banner .hero .hero-text {
        font-size: 1em;
    }
    
    .banner .hero .hero-button a{
        font-size: 1.2em;
    }
    /* GALLERY CATEGORY */
    .gallery-category .card-category p{
        font-size: 1em;
    }
    .gallery-category .card-category h2{
        font-size: 1.8em;
    }
}

/* RECENT POSTS header */
.gallery-blogposts > h3.header-blogposts{
    font-size: 1.6em;
    font-weight: bold;
}