body {
    font-family: Arial, sans-serif;
}

.imgClique {
    padding: 10px 15px;
    cursor: pointer;
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.imgClique:hover {
    scale: 1.1;
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal {
    display: none;
    align-items: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 60%;
    width: 100%;
}

.close {
    color: #ff0000;
    float: right;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 15px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.imgModal {
    width: 100%;
}

@media (max-width: 700px) {
    .modal, .modal-content {
        padding: 5px;
    }

    .modal-content {
        max-width: 100%;
    }
    .close {
        top: -50px;
        right: 5px;
    }
}