.projectPopup {
    width: 100%;
    height: 300%;
    position: absolute;
    top:0;
    left: 0;
    background-color: RGBA(0,0,0,0.7);
    display:none;
    opacity: 0;
    transition:0.8s all;
}

.projectPopup .projectPopupWrapper {
    width: 70%;
    height: 70%;
    background-color: #FFF;
    position: fixed;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    margin:0;
    box-shadow: 2px 2px 10px black;
}
.projectPopup .projectPopupWrapper img.closePopup {
    margin:15px;
    float:right;
    cursor: pointer;
}

.projectPopup .projectPopupWrapper .projectPopupContent {
    width:calc(100% - 60px);
    height:calc(100% - 60px);
    margin:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.projectPopup .projectPopupWrapper .projectPopupContent video, .projectPopup .projectPopupWrapper .projectPopupContent img, .projectPopup .projectPopupWrapper .projectPopupContent iframe {
    max-width: 100%;
    max-height: calc(100% - 2em - 60px);
    height: 100%;
    width: 100%;
}



.projectPopup .projectPopupWrapper .projectPopupContent h1 {
    text-align: center;
    font-size: 2em;
    margin:30px;
}

.projectPopup .projectPopupWrapper .projectPopupContent img {
    width:100%;
    height: auto!important;
}