.hero-image {
    background-image: url("img/Background.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: calc(3vw + 2.5vh);
}

h1 {
    margin: calc(2vw + 2vh); 
    margin-top:0;
    padding-top: calc(4vw + 4vh);
    text-align: center;
    color: white;
    font-size: calc(2vw + 2vh);
}

h2 {
    margin: calc(2vw + 1vh);
    text-align: center;
    color: white;
    font-size: calc(2vw + 1vh);
}
.fas {
    color:white;
    font-size:calc(2vw + 2vh);
}
.fa-message::before {
    position:relative;
    top:calc(50% - 1.25vw);
}
.fa-hashtag::before {
    position:relative;
    top:calc(50% - 1.25vw);
}
.header-holder {
    display:flex;
    justify-content:center;
}
.image-holder {
    width:80%;
    display:block;
    margin-left:auto;
    margin-right:auto;
    margin-top:calc(1vw + 1vh);
}

.masonry-grid {
    margin-top:10px;
    padding-left:calc(.75vw + .5vh);
}
.masonry-grid-item {
    width:32%;
    margin-bottom:10px;
}
.masonry-grid-item img {
    width:100%;
}
.image-utisak {
    display:block;
    margin-left:auto;
    margin-right:auto;
    aspect-ratio: auto;
    max-height: 80vh;
}
/*For popup image */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    display:flex;
    justify-content: center;
    align-items: middle;
    background-color: #fff;
    padding: 20px;
    height:100%;
    max-width: 90%; /* Adjust the maximum width as needed */
    max-height: 90%;
    overflow: auto;
    text-align: center;
  }
  
  .popup-content img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
  }
  
  .close-btn {
    position: absolute;
    visibility: hidden;
    top: 10px;
    right: 15px;
    font-size: 30px;
  }