.twoClick.overlay {
    background: #D7D7D7;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
    color: #000;
    position: relative;
}

.twoClick.overlay .button {
    cursor: pointer;
    color: #000;
    background: rgb(245, 245, 245);
    border-radius: 2px;
    padding: 7.5px 15px;
    margin: 20px 0 0;
    transition: .3s all;
    box-shadow: 2px 2px 2px #ccc ;
}

.twoClick.overlay .button:hover {
    background: #fff;
}