@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700;900&display=swap');
.modal.show {
    display: block;
}


.modal {

    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.874);
    display: none;


}

.modal__container {
 
    position: fixed;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    overflow: hidden;

}


.modal__container img {
    width: 100%;
}

#close {
   
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
    color: #fff;
    font-size: 50px;
    font-family: 'Roboto' sans-serif;
    font-style:normal !important;
    text-decoration: none;
    font-weight: 300;
    transition: all .3s ease-in-out;
    
}

#close:hover {

    color: #fff;
    font-size: 60px;
}



@media only screen and (max-width: 768px){

    .modal__container {
 
        width: 80%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);

    }
    
    
    .modal__container img {
        width: 150%;
    }


    #close {
   
        position: absolute;
        top: 20px;
        right: 30px;
    
    }
 
  }



