.main-img-holder{
    width: 100%;
    position: relative;
}

.main-img-holder img{
    width: 100%;
}

.main-img-holder > div{
    position: absolute;    
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    height:30%;
    min-width: 50%;    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-img-holder > div > *{
    margin:0;
}

.main-img-holder h1{
    font-size: 2.75em;    
}

.home-p{
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.home-footer{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    cursor: pointer;
    align-items: center;
    font-size: 1.25rem;
}

@media only screen and (max-width: 767px){
    .home-p{
        width:95%;
        font-size: 0.75em;
    }
    
    .main-img-holder h1{
        font-size: 0.8em;        
    }

    .main-img-holder > div{
        width:100%;
    }

    .main-img-holder img{
        width: 140%;
        transform: translateX(-50%);
        position: relative;
        left:50%;
    }

    .title1{
        font-size: 0.6em;
    }

    .home-footer{
        width: 90%;
        margin:0 auto;
        column-gap:5px;
    }

    .home-footer span{
        font-size: 0.7em;
    }

    .home-footer img{
        height: 20px
    }
}