.horitio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(207, 224, 231, 0.5);
    z-index: 1;
}

.sacred-heart {
    position: relative;
    background-image: url('/assets/img/about.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
}

.joji {
    position: relative;
    z-index: 2;
    height: 80%;
}

.popup-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: none; /* Initially hidden */
    }

    /* Media query for smaller screens */
    @media (max-width: 768px) {
      .popup-container {
        left: 50%;
        right: auto;
        bottom: 10px;
        transform: translateX(-50%);
        width: 90%; /* Adjust width for better fit */
      }
    }
    

    