#new .one img{

    height: 100%;
    width: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#new .one{
    position: relative;
}

#new .details{
    position: absolute;
    top: 0;
    left: 0;
    color: burlywood;
    font-weight: bold;
    transition: 0.4s ease;
    opacity: 0.7;
    background-color: rgb(1, 1, 1);
    height: 100%;
    width: 100%;
}


#new .one .details:hover{

    background-color: cornsilk;


}


#new .one:nth-child(1) .details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;

}

#new .one:nth-child(2) .details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

#new .one:nth-child(3) .details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: right;

}

#new .one:nth-child(4) .details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;

}

