.demo-gallery ul {
    text-decoration: none;
}


.demo-gallery ul li {
    width: 30vw;
    height: 30vh;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    margin: 10px 10px;
}

.demo-gallery ul li:hover .image-text{
    display: flex;
    cursor: pointer;
}

.demo-gallery ul li a img {
    width: 100%;
    height: auto;
}

.demo-gallery ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 50px;
}

.image-text {
    display: none;
    background:rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    color: white;
    font-family: "Amatic SC";
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 3em;
}

@media screen and (max-width:768px){   
    .demo-gallery ul li {
        width: 85%;
        height: 30vh;
        overflow: hidden;
        background-position: center;
        background-size: cover;
    }

    
}

@media screen and (max-width:1280px) and (min-width: 768px){
}
