h1 {
    font-size: 280%;
    line-height: 120%;
}
.blogContainer {
    min-height: 530px;
    margin: auto;
}
.bloco200 { 
    width: 100%;
    margin-top: 50px;
}
.corpoBloco200 {
    border: 2px solid var(--var-secondary--color);
    border-bottom-width: 5px;
}
.corpoBloco200 img {
    margin: -20px 30px 15px;
    width: 80%;
    border: 2px solid #ededed;
    border-radius: 15px;
}
.textoBloco200 {
    text-align: center;
    color: var(--var-secondary--color);
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: -5%;
}
.textoBloco200 .h3 {
    font-size: 18px;
    font-weight: bold;
}
.textoBloco200 svg {
    width: 35px;
    height: 35px;
    display: block;
    margin: 10px auto;
    fill: var(--var-secondary--color);
}
.gridCapasHistoricas div {
	border: 3px solid var(--var-primary--color);
    position: relative;
}
.gridCapasHistoricas div img {
    cursor: pointer;
}
.gridCapasHistoricas div span {
    position: absolute;
    top:10px;
    right: 10px;
    font-size: 14px;
    color: #fff;
    line-height: normal;
    letter-spacing: -5%;
    background-color: var(--var-secondary--color);
    border-radius: 10px;
    padding: 5px 10px;
}
.gridCapasHistoricas div p {
    padding: 10px;
    margin: auto;
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: 700;
    display: block;
}
/* Caption of Modal Image (Image Text) - Same Width as the Image */
#modal-image-container #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
} 
/* Add Animation - Zoom in the Modal */
#modal-image-container #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
} 
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
.xl\:grid-cols-5 {
    @media (width >= 80rem /* 1280px */) {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
.xl\:grid-rows-5 {
    @media (width >= 80rem /* 1280px */) {
        grid-template-rows: repeat(5, minmax(0, 1fr));
    }
}