.pam-container{
    display:none;
    flex-direction:column;
    justify-content: center;
    align-items:center;

    position:fixed;
    z-index:5;
    
    top:0;
    background-color:#0000009f;
    width:100%;
    height:100%;
    transition: opacity 0.3s ease-in-out;
}

.pam-container.show {
    display: flex;
    opacity: 1;
}

.pam{
    width:85%;
    max-width:1200px;
    height:auto;

    background-color:white;
}

@media (max-width: 768px) { /* 모바일 적용 */ 
    /* #pamContainer {
        content: url("../source/img/PAMm1.jpg"); 
    }
    #pamContainer2 {
        content: url("../source/img/PAMm2.jpg"); 
    } */
    .pam{
        width:100%;
    }
}