.home-long{
    width: 100%;
    height: 600px;
    background-color: rgba(0, 0, 0, 0.25);
    margin: auto;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0);
    align-items: center; /* Center the image verticall */
    display: flex; /* Turn this into a flex container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    overflow: hidden;
}

/* Image */
.HLimg{
    width: fit-content;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0);
    margin: auto;
    /* filter: ; */
    overflow: hidden;
}

.HLimg img{
    overflow: hidden;
    width:100%;
    filter: blur(20px) drop-shadow(0px 0px 0px rgba(255, 255, 255, 0));
    animation: metanoiafade 8s infinite;
}

#metanoia1 {
    background-image: url('media/projects/08 Aug/metanoia/METANOIA FINAL A.jpg');
    animation: metanoiafade 16s infinite; /* Total animation duration is 16 seconds */
}

#metanoia2 {
    transform: translateY(-100%);
    background-image: url('media/projects/08 Aug/metanoia/METANOIA FINAL D.jpg');
    animation: metanoiafade 16s infinite 8s; /* Start the second image after 8 seconds */
}

@keyframes metanoiafade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


#biglogo{
    width: 150px;
}


@media only screen and (max-width: 600px) {

    .home-long{
        height: 250px;
    }

    #biglogo{
        width: 50px;
    }
    
      }