

.hero-image{
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../Common/ConocerBiblia.jpg");
  height: 35vh;
  max-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--background-white-color);
    font-size: 20px;
}

.sectionsContainer{
    display: flex;
    flex-direction: column;
}

.sectionContainer{
    display: flex;
    flex-direction: column;
}

.titleForSection{
    font-size: 41px;
    text-align: center;
    margin: 5%;
}

.blogViewContainer{
    display: flex;
    flex-direction: column;
    align-content: center;
    margin-left: 5%;
    margin-right: 5%;
}

.blogViewContainer.None{
    display: none;
}

.blogViewContainer.None div p a {
    display: none;
}

.blogEntry{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20% 75%;
    grid-template-areas: 
    "BlogTitle"
    "BlogSummary";
    min-height: 180px;
}

.blogTitle{
    grid-area: BlogTitle;
    font-size: 30px;
    font-weight: bold;
}

.blogSummary{
    grid-area: BlogSummary;
    font-size: 14px;
    margin: 0;
}

.openArchive{
    color: var(--background-white-color);
    background-color: var(--background-dark-color);
    margin: 0% 15% 10% 15%;
    height: 25px;
    font-size: 14px;
    border-radius: 4px;
    width: 70%;
}

@media only screen and (max-height : 813px) and (min-width: 374px) and (orientation : portrait){ /*iphone X and 8Plus*/



}

@media screen and (min-width: 765px) and (max-width: 1023px){

    .hero-image{
      height: 45vh;
    }
    
    .hero-text {
        font-size: 55px;
    }

    .sectionsContainer{
        display: flex;
        flex-direction: row;
    }
}

@media screen and (min-width: 1024px){


    .hero-image{
        height: 65vh;
      }
      
    .hero-text {
        font-size: 65px;
    }
    .sectionsContainer{
        display: flex;
        flex-direction: row;
    }

}