.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup:target {
    opacity: 100%;
    visibility:visible;
}

.popup:target .popup_content {
    opacity: 100%;
    transform: translate(0px, 0px);
}

.popup_body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px 30px 10px;
}

.popup_content {
    background-color: rgba(0, 0, 0, 0.8);
    background:url(../img/Media.jpg)  no-repeat center ;
    
    font-weight: 700;
    color: rgb(255, 255, 255);
    max-width: 600px;
    padding: 30px;
    position: relative;
    transition: all 0.8s;
    opacity: 0;
    transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}
.popup_title {
    font-size: 40px;
    margin-bottom: 10px;
}

.popup_close {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: absolute;
    text-decoration: none;
    color:rgb(255, 255, 255);
    right: 10px;
    top: 10px;
    font-size: 20px;
}

.popup_area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor:auto;
}

