div.CVRmodal {
    width: 100%;
    height: 100%;
    float: left;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000009f;
    z-index: 999999999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.modalClose {
    width: 40%;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    margin: 30px auto 0;
    animation-name: blink;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    cursor: pointer;
    font-size: 30px;
    color: red;
    font-weight: bold;
}

@keyframes blink {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.modalTittle {
    width: 80%;
    height: 30px;
    display: flex;
    justify-content: center;
    color: white;
    margin: 10px auto;
    text-align: center;
}

.modalBody {
    width: 80%;
    height: calc(100% - 60px);
    display: flex;
    justify-content: center;
    color: white;
    margin: 10px auto;
    text-align: center;
}

.modalBody img {
    width: 500px;
    height: 500px;
}

@media screen and (max-width:660px){

    div.CVRmodal {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .modalClose {
        width: 80%;
        font-size: 35px;
        color: red;
    }
    
    .modalBody {
        justify-content: center;
        align-items: flex-start;
    }
    
    .modalBody img {
        width: 300px;
        height: 300px;
        margin: 20px auto;
    }
}