#popUp{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#wrapperContent{
    width: 80%;
    aspect-ratio: 16 / 9;
}

#wrapperiFrame{
    width: 100%;
    height: 100%;
}
iframe{
    height:100%;
    width:100%;
/*     max-height:720px;
    max-width:1280px;
    min-height:280px;
    min-width:280px */
}
#closeBtn{
    position: absolute;
    top: 3%;
    right: 3%;
    width: 5%;
    aspect-ratio: 1/1;
    background: url(imgs/close.png) no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
}

@media screen and (max-width:1200px) {
    #wrapperContent {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    #closeBtn{
        width: 10%;
    }
    
}